Skip to content

Commit

Permalink
fix(helm-test): separate context and file in docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-rm-meyer-ISST committed Jan 28, 2024
1 parent 9130ea1 commit a12a518
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/helm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,16 @@ jobs:
- name: Build Frontend image
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 #v5.1
with:
context: ./frontend/Dockerfile
context: .
file: /frontend/Dockerfile
push: true
tags: ${{ env.REGISTRY }}/${{ env.APP_FRONTEND_NAME }}:${{ env.TAG }}

- name: Build Backend image
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 #v5.1
with:
context: ./backend/Dockerfile
context: .
file: /backend/Dockerfile
push: true
tags: ${{ env.REGISTRY }}/${{ env.APP_BACKEND_NAME }}:${{ env.TAG }}

Expand Down

0 comments on commit a12a518

Please sign in to comment.