Skip to content

Commit 0189f0f

Browse files
committed
Infra: Dockerfile 수정
- .env(환경변수 파일) 실행 스테이지에 추가
1 parent 63ad0d8 commit 0189f0f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@ WORKDIR /app
2525
# 첫 번째 스테이지에서 빌드된 JAR 파일 복사
2626
COPY --from=builder /app/build/libs/*.jar app.jar
2727

28+
# 여기서 빌드 컨텍스트의 .env를 컨테이너 안으로 복사
29+
COPY .env .env
30+
2831
# 실행할 JAR 파일 지정
2932
ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-jar", "app.jar"]

0 commit comments

Comments
 (0)