Skip to content

Commit

Permalink
Update docker-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kallyas authored Aug 25, 2023
1 parent 3a50385 commit 8908c0e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,23 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push

# Build and push the server Docker image
- name: Build and push server
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./server/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: idenmorisha/safe-courier-backend:latest

# Build and push the client Docker image
- name: Build and push client
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./client/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: idenmorisha/safe-courier-frontend:latest

0 comments on commit 8908c0e

Please sign in to comment.