-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
# open jdk 17 버전의 환경을 구성 | ||
FROM openjdk:17-alpine | ||
# OpenJDK 17 기반 이미지 사용 | ||
FROM openjdk:17-jdk-alpine | ||
|
||
# build가 되는 시점에 JAR_FILE이라는 변수 명에 build/libs/*.jar 선언 | ||
# build/libs - gradle로 빌드했을 때 jar 파일이 생성되는 경로 | ||
ARG JAR_FILE=build/libs/*.jar | ||
# JAR 파일을 컨테이너 내 /app/app.jar 경로에 복사 | ||
COPY build/libs/X-0.0.1-SNAPSHOT.jar /app/app.jar | ||
|
||
# JAR_FILE을 app.jar로 복사 | ||
COPY ${JAR_FILE} app.jar | ||
|
||
# 운영 및 개발에서 사용되는 환경 설정을 분리 | ||
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=prod", "/app.jar"] | ||
# 애플리케이션 실행 (prod 프로파일 사용) | ||
ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-jar", "/app/app.jar"] |