Skip to content

Commit

Permalink
fix: 도커 빌드 플랫폼 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 authored Apr 10, 2024
1 parent 8b5ca75 commit 6e04901
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/cd-back-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,8 @@ jobs:
username: ${{ vars.DOCKER_HUB_DEV_USERNAME }}
password: ${{ secrets.DOCKER_HUB_DEV_LOGIN_TOKEN }}

- name: Build Docker images
run: docker build -t ${{ vars.DOCKER_DEV_TAG }} .

- name: Push Docker images
run: docker push ${{ vars.DOCKER_DEV_TAG }}
- name: Build And Push docker image
run: docker build --platform linux/arm64/v8 --push --tag ${{ vars.DOCKER_DEV_TAG }} .

- name: run application use ssh
uses: appleboy/ssh-action@master
Expand Down

0 comments on commit 6e04901

Please sign in to comment.