fix: update Docker image context and tags in deploy workflow

- Changed the Docker build context to './apps/web' for better organization.
- Updated the image tag from 'namespace/example:latest' to 'killercf/sgc:latest' to reflect the correct repository.
This commit is contained in:
2025-11-26 10:25:30 -03:00
parent daee99191c
commit de694ed665

View File

@@ -21,10 +21,10 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
context: ./apps/web
file: ./Dockerfile
push: true
# Make sure to replace with your own namespace and repository
tags: |
namespace/example:latest
killercf/sgc:latest
platforms: linux/amd64