Skip to content

Commit

Permalink
도커 파일 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjun01 committed Sep 30, 2024
1 parent 71a1a12 commit 5f6f395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM openjdk:17-jdk-alpine

# 빌드된 JAR 파일을 도커 이미지에 복사
COPY build/libs/*.jar /app/
COPY build/libs/*.jar /app/app.jar # JAR 파일 이름을 지정하여 복사

# 애플리케이션 실행 (prod 프로파일로 실행)
ENTRYPOINT ["java","-Dspring.profiles.active=prod","-jar","/app.jar"]
ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-jar", "/app/app.jar"] # 경로를 /app/app.jar로 수정

0 comments on commit 5f6f395

Please sign in to comment.