Skip to content

Commit

Permalink
💚 Fix image builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Poeschl committed Sep 3, 2024
1 parent d0877d9 commit f7f9107
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dev-backend-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,10 @@ jobs:
id: build-image
uses: redhat-actions/buildah-build@v2
with:
containerfiles: backend/Dockerfile
context: backend
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}
containerfiles: backend/Dockerfile
platforms: linux/amd64,linux/arm64
# Disable layer caching
layers: false
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dev-frontend-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,10 @@ jobs:
id: build-image
uses: redhat-actions/buildah-build@v2
with:
containerfiles: frontend/docker/Dockerfile
context: frontend
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}
containerfiles: backend/Dockerfile
platforms: linux/amd64,linux/arm64
# Disable layer caching
layers: false
Expand Down

0 comments on commit f7f9107

Please sign in to comment.