From 8df9289ffa1f86623a26386ca89ed97da6008ea2 Mon Sep 17 00:00:00 2001 From: mirlee0304 <91879211+mirlee0304@users.noreply.github.com> Date: Sun, 19 Jan 2025 22:00:42 +0900 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d59ad9..accc0b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,11 +26,12 @@ jobs: # 3. Docker 이미지 빌드 - name: Build and push Docker image - run: | - docker build \ - --build-arg DB_USER=${{ secrets.DB_USER }} \ - --build-arg DB_PASSWORD=${{ secrets.DB_PASSWORD }} \ - -t mirlee/discordchatbot:latest . + run: | + docker build \ + --build-arg DB_USER=${{ secrets.DB_USER }} \ + --build-arg DB_PASSWORD=${{ secrets.DB_PASSWORD }} \ + -f ./discordchatbot/Dockerfile \ + -t mirlee/discordchatbot:latest . - name: Log in to Docker Hub uses: docker/login-action@v2 with: