Skip to content

Commit

Permalink
added platform to build command
Browse files Browse the repository at this point in the history
  • Loading branch information
jakegodsall committed Dec 5, 2024
1 parent 34ab147 commit 425ac76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build and push Docker image
run: |
IMAGE_NAME="${{ secrets.DOCKERHUB_USERNAME }}/portfolio"
docker build -f build/docker/python/Dockerfile -t $IMAGE_NAME:latest .
docker build --platform linux/arm64 -f build/docker/python/Dockerfile -t $IMAGE_NAME:latest .
docker push $IMAGE_NAME:latest
deploy:
Expand Down

0 comments on commit 425ac76

Please sign in to comment.