Skip to content

Commit

Permalink
fix(ci/cd): No need to set the default Docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Oct 10, 2024
1 parent 3a00afc commit ecda071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cd client
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker build -f Dockerfile -t $IMAGE_ID:${{ steps.tag.outputs.tag }} -t $IMAGE_ID:latest .
docker build -t $IMAGE_ID:${{ steps.tag.outputs.tag }} -t $IMAGE_ID:latest .
- name: 📦 Push Docker image
run: |
Expand Down

0 comments on commit ecda071

Please sign in to comment.