Skip to content

Commit 74be629

Browse files
committed
fix: Dockerfile 수정 4
- path 수정
1 parent 7df72ae commit 74be629

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/cd-develop.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,21 @@ jobs:
6666
echo $CR_PAT | docker login ghcr.io -u ${{ secrets.GIT_ID }} --password-stdin
6767
6868
- name: Docker build & push (Default)
69+
working-directory: /home/runner/work/WEB2_3_DFBF_BE/WEB2_3_DFBF_BE
6970
run: |
71+
echo "Current directory: $(pwd)"
72+
ls -R
7073
TAG=$(git rev-parse --short HEAD)
7174
DOCKER_IMAGE_DEFAULT=ghcr.io/${{ secrets.GIT_ID }}/soundlink_default:$TAG
7275
docker build -t soundlink_default -f ./docker/default.Dockerfile .
7376
docker tag soundlink_default $DOCKER_IMAGE_DEFAULT
7477
docker push $DOCKER_IMAGE_DEFAULT
7578
7679
- name: Docker build & push (Chat)
80+
working-directory: /home/runner/work/WEB2_3_DFBF_BE/WEB2_3_DFBF_BE
7781
run: |
82+
echo "Current directory: $(pwd)"
83+
ls -R
7884
TAG=$(git rev-parse --short HEAD)
7985
DOCKER_IMAGE_CHAT=ghcr.io/${{ secrets.GIT_ID }}/soundlink_chat:$TAG
8086
docker build -t soundlink_chat -f ./docker/chat.Dockerfile .

0 commit comments

Comments
 (0)