Skip to content

Commit

Permalink
refactor: update workflow file for Dockerfile.prod
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-abin committed Mar 4, 2025
1 parent f2e8d03 commit ee217d5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd admin && docker build -t abinv/admin .
- run: cd admin && docker build -t abinv/admin -f Dockerfile.prod .
- run: docker push abinv/admin
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auth.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd auth && docker build -t abinv/auth .
- run: cd auth && docker build -t abinv/auth -f Dockerfile.prod .
- run: docker push abinv/auth
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chat.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd chat && docker build -t abinv/chat .
- run: cd chat && docker build -t abinv/chat -f Dockerfile.prod .
- run: docker push abinv/chat
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/client-app.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd client && docker build -t abinv/client-devhive .
- run: cd client && docker build -t abinv/client-devhive -f Dockerfile.prod .
- run: docker push abinv/client-devhive
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/job.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd job && docker build -t abinv/job .
- run: cd job && docker build -t abinv/job -f Dockerfile.prod .
- run: docker push abinv/job
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/payment.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd payment && docker build -t abinv/payment .
- run: cd payment && docker build -t abinv/payment -f Dockerfile.prod .
- run: docker push abinv/payment
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- run: cd profile && docker build -t abinv/profile .
- run: cd profile && docker build -t abinv/profile -f Dockerfile.prod .
- run: docker push abinv/profile
# # Commenting out Digital Ocean specific steps since we're not deploying there now
# - uses: digitalocean/action-doctl@v2
Expand Down

0 comments on commit ee217d5

Please sign in to comment.