Skip to content

Commit

Permalink
Merge pull request #249 from Team-Ampersand/develop
Browse files Browse the repository at this point in the history
 :: CICD Docker 안돼던 이슈 해결
  • Loading branch information
Huuuunee committed Aug 17, 2023
2 parents f5fc213 + 8fcdbf2 commit 4963c48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{secrets.DOCKERHUB_TOKEN}}

- name: Build the Docker image
run: docker build --platform amd64 --build-arg DEPENDENCY=build/dependency -f DockerfileDev -t ${{secrets.DOCKERHUB_USERNAME}}/dotori-dev --platform linux/amd64 .
run: docker build --platform linux/amd64 --build-arg DEPENDENCY=build/dependency -f DockerfileDev -t ${{secrets.DOCKERHUB_USERNAME}}/dotori-dev .

- name: Docker Push
run: docker push ${{secrets.DOCKERHUB_USERNAME}}/dotori-dev
2 changes: 1 addition & 1 deletion .github/workflows/master-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
password: ${{secrets.DOCKERHUB_TOKEN}}

- name: Build the Docker image
run: docker build --platform amd64 --build-arg DEPENDENCY=build/dependency -f DockerfileProd -t ${{secrets.DOCKERHUB_USERNAME}}/dotori-prod --platform linux/amd64 .
run: docker build --platform linux/amd64 --build-arg DEPENDENCY=build/dependency -f DockerfileProd -t ${{secrets.DOCKERHUB_USERNAME}}/dotori-prod --platform .

- name: Docker Push
run: docker push ${{secrets.DOCKERHUB_USERNAME}}/dotori-prod

0 comments on commit 4963c48

Please sign in to comment.