Docker build context fixed in frontend building job
Build and Push Docker Image / build-and-push (push) Successful in 4m46s

This commit is contained in:
2026-08-04 20:18:11 +05:00
parent e28bcc27fc
commit e802b684ff
+1 -1
View File
@@ -37,7 +37,7 @@ jobs:
- name: Build frontend image
run: |
docker build -t ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.REPO }}_frontend:${{ github.sha }} -f ./web/frontend/Dockerfile .
docker build -t ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.REPO }}_frontend:${{ github.sha }} -f ./web/frontend/Dockerfile ./web/frontend
docker tag ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.REPO }}_frontend:${{ github.sha }} ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.REPO }}_frontend:latest
- name: Push frontend image