Skip to content

Commit f45dda8

Browse files
authored
refactor: 멀티 플랫폼 빌드를 amd64 단독 빌드로 변경 (#23)
* [BOOK-88] refactor: 빌드 스크립트 리팩터링 * [BOOK-88] feat: prod, dev 용 Dockerfile 구현 * [BOOK-88] refactor: 코드리뷰 반영 * [BOOK-88] refactor: 도커 스테이지 최적화 * [BOOK-88] refactor: 변경된 도커파일에 맞게 스크립트 변경 * [BOOK-88] fix: 확장자에 맞게 도커파일 수정 * [BOOK-88] fix: 확장자에 맞게 도커파일 수정 * [BOOK-88] refactor: Wrapper 스크립트와 gradle/wrapper 디렉터리를 함께 복사하도록 변경 * [BOOK-88] chore: 주석 수정 * [BOOK-88] fix: buildSrc 모듈도 복사하도록 수정 * [BOOK-88] refactor: 멀티 플랫폼 빌드 제거 - arm64만 QEMU로 인해 의존성 다운로드 단계가 오래걸리기에 amd64만 빌드하도록 변경
1 parent a95713e commit f45dda8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dev-ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
context: .
5656
file: ./Dockerfile
57-
platforms: linux/amd64,linux/arm64
57+
platforms: linux/amd64
5858
push: true
5959
tags: ${{ steps.meta.outputs.tags }}
6060
cache-from: type=gha

.github/workflows/prod-ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
context: .
5757
file: ./Dockerfile
58-
platforms: linux/amd64,linux/arm64
58+
platforms: linux/amd64
5959
push: true
6060
tags: ${{ steps.meta.outputs.tags }}
6161
cache-from: type=gha

0 commit comments

Comments
 (0)