Skip to content

Commit

Permalink
fix: docker 빌드시 env 명령어 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-byeol committed Jan 3, 2025
1 parent 56ca547 commit f9825da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/backend-cd-prod-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
docker push ${{ secrets.DOCKERHUB_USERNAME }}/$DOCKERHUB_REPOSITORY:prod-previous || true
- name: Docker Image Build And Push
run: docker build --platform linux/arm64 --env SPRING_PROFILES_ACTIVE=prod -t ${{ secrets.DOCKERHUB_USERNAME }}/$DOCKERHUB_REPOSITORY:${{ github.sha }}-prod_v2 -f Dockerfile . --push
run: docker build --platform linux/arm64 -t ${{ secrets.DOCKERHUB_USERNAME }}/$DOCKERHUB_REPOSITORY:${{ github.sha }}-prod_v2 -f Dockerfile . --push

pull-and-deploy:
needs: build-and-push
Expand Down

0 comments on commit f9825da

Please sign in to comment.