diff --git a/.github/workflows/helm-test.yml b/.github/workflows/helm-test.yml index a57f154f..cf0bfa10 100644 --- a/.github/workflows/helm-test.yml +++ b/.github/workflows/helm-test.yml @@ -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 }}