Esclusi file da build, attivato workflow di rilascio del container.
Build Image / BuildImage (push) Failing after 12s Details

This commit is contained in:
Emiliano Vavassori 2024-03-10 01:45:04 +01:00
parent 1854b5dd48
commit db94221888
2 changed files with 46 additions and 0 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
.gitea/*
README.md

View File

@ -0,0 +1,44 @@
---
name: Build Image
on: [ push ]
jobs:
BuildImage:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
env:
DOCKER_ORG: ${{ secrets.SYS42_REGISTRY_ORG }}
DOCKER_USERNAME: ${{ secrets.SYS42_REGISTRY_USERNAME }}
DOCKER_IMAGE_NAME: myarch
DOCKER_VERSION: latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v2
with:
config-inline: |
[registry."${{ secrets.SYS42_REGISTRY_ORG }}"]
http = false
insecure = false
- name: Login to Registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.SYS42_REGISTRY_ORG }}
username: ${{ secrets.SYS42_REGISTRY_USERNAME }}
password: ${{ secrets.SYS42_REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ env.DOCKER_ORG }}/${{ env.DOCKER_USERNAME }}/${{ env.DOCKER_IMAGE_NAME }}:${{ env.DOCKER_VERSION }}