Skip to content

Commit

Permalink
docs: github actions docker build workflow 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
somin-jeong committed Apr 12, 2024
1 parent 1700e1b commit 46f0107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Docker build
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t app .
docker build --platform linux/amd64 -t app .
docker tag app ${{ secrets.DOCKER_USERNAME }}/conet:latest
docker push ${{ secrets.DOCKER_USERNAME }}/conet:latest
Expand Down

0 comments on commit 46f0107

Please sign in to comment.