diff --git a/.github/workflows/azure-dev.yml b/.github/workflows/azure-dev.yml index adb049f..5ffd2ad 100644 --- a/.github/workflows/azure-dev.yml +++ b/.github/workflows/azure-dev.yml @@ -41,11 +41,13 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - name: Build and Push Docker image + - name: Build and Push Docker image for Client run: | - docker buildx build --platform linux/amd64 -t ${{ vars.AZURE_CLIENT_ID }}/$IMAGE_NAME:latest . --push - env: - IMAGE_NAME: streetree # 사용자가 사용할 이미지 이름을 여기에 적어야 합니다 + docker buildx build --platform linux/amd64 -f applications/client/Dockerfile -t ${{ vars.AZURE_CLIENT_ID }}/client:latest . --push + + - name: Build and Push Docker image for Server + run: | + docker buildx build --platform linux/amd64 -f applications/server/Dockerfile -t ${{ vars.AZURE_CLIENT_ID }}/server:latest . --push - name: Provision Infrastructure run: azd provision --no-prompt