diff --git a/.github/workflows/backend-ci-deploy.yml b/.github/workflows/backend-ci-deploy.yml index 5a19987..a4b440f 100644 --- a/.github/workflows/backend-ci-deploy.yml +++ b/.github/workflows/backend-ci-deploy.yml @@ -65,6 +65,9 @@ jobs: id: date run: echo "tag=$(date +'%Y%m%d-%H%M%S')" >> $GITHUB_OUTPUT + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Build and push Docker image uses: docker/build-push-action@v6 with: diff --git a/Dockerfile b/Dockerfile index d469416..6763f8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM amazoncorretto:17-alpine-jdk # 필요한 패키지 설치 및 설정 -RUN apk add --no-cache tzdata wget curl grep && \ - ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \ - wget -O /dd-java-agent.jar 'https://dtdg.co/latest-java-tracer' +RUN apk add --no-cache tzdata wget curl grep +RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime +RUN wget -O /dd-java-agent.jar 'https://dtdg.co/latest-java-tracer' # 작업 디렉토리 설정 WORKDIR /app