Build docker containers
Some checks failed
Build and Push Docker Image / build (push) Failing after 1m50s
Some checks failed
Build and Push Docker Image / build (push) Failing after 1m50s
This commit is contained in:
38
.gitea/workflows/build-docker-container.yaml
Normal file
38
.gitea/workflows/build-docker-container.yaml
Normal file
@@ -0,0 +1,38 @@
|
||||
name: Build and Push Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
container:
|
||||
image: quay.io/buildah/stable
|
||||
options: --security-opt seccomp=unconfined --security-opt apparmor=unconfined --device /dev/fuse:rw --privileged
|
||||
|
||||
env:
|
||||
BUILDAH_ISOLATION: chroot
|
||||
STORAGE_DRIVER: vfs
|
||||
|
||||
steps:
|
||||
- name: Install Node.js
|
||||
run: dnf install -y nodejs git
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Registry
|
||||
run: buildah login -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_PASSWORD }} git.kocoder.xyz
|
||||
|
||||
- name: Buildah Build
|
||||
run: |
|
||||
buildah build -t ${{ github.sha }} ./Einheit_4/2025_5BHITN_Konstantin_Hintermayer_smarterrent/Dockerfile
|
||||
buildah build -t ${{ github.sha }}-tooling ./Einheit_4/tooling_container/Dockerfile
|
||||
buildah tag ${{ github.sha }} latest
|
||||
|
||||
- name: Push Docker Images
|
||||
run: |
|
||||
buildah push ${{ github.sha }} docker://git.kocoder.xyz/kocoded/2025_5BHITN_Hintermayer_Konstantin_smarterrent_db:${{ github.sha }}
|
||||
buildah push ${{ github.sha }}-tooling docker://git.kocoder.xyz/kocoded/2025_5BHITN_Hintermayer_Konstantin_smarterrent_db_init_db:${{ github.sha }}
|
||||
buildah push latest docker://git.kocoder.xyz/kocoded/2025_5BHITN_Hintermayer_Konstantin_smarterrent_db:latest
|
||||
Reference in New Issue
Block a user