From 7ab4b40bf0c2a7308fba353ef7f5f7be841ca9b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=84=B1=EB=B9=88?= Date: Mon, 1 Sep 2025 23:07:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EC=95=84=EC=A0=9C=EB=B0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From 970da15799396b3fc587beef5ed033f28d2d00ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=84=B1=EB=B9=88?= Date: Mon, 1 Sep 2025 23:16:56 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EC=A7=84=EC=A7=9C=20=EC=A0=9C?= =?UTF-8?q?=EB=B0=9C=20=EB=A7=88=EC=A7=80=EB=A7=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/backend-ci-deploy.yml | 3 +++ 1 file changed, 3 insertions(+) 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: