From da27925d37202cbc6ca0203d8e0f5b693317646f Mon Sep 17 00:00:00 2001 From: mrangjw <157506327+mrangjw@users.noreply.github.com> Date: Thu, 30 Apr 2026 15:31:24 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20#39=20=EB=B9=8C=EB=93=9C=20=ED=94=8C?= =?UTF-8?q?=EB=9E=AB=ED=8F=BC=EC=97=90=20linux/arm64=20=EB=B3=B5=EC=9B=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mac M-series 팀원 docker run 호환성을 위해 multi-arch 빌드 복원. - QEMU 설정 step 추가 - platforms: linux/amd64 → linux/amd64,linux/arm64 --- .github/workflows/cicd.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index ba3f772..7ab36f7 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -33,6 +33,9 @@ jobs: - name: Amazon ECR 로그인 uses: aws-actions/amazon-ecr-login@v2 + - name: QEMU 설정 + uses: docker/setup-qemu-action@v3 + - name: Docker Buildx 설정 uses: docker/setup-buildx-action@v3 @@ -42,7 +45,7 @@ jobs: context: . file: ./Dockerfile push: true - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 tags: ${{ env.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max