Skip to content

Commit

Permalink
HOTFIX: jar파일 경로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjun01 committed Sep 30, 2024
1 parent af5573e commit 359d21d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# OpenJDK 17 기반의 이미지 사용
FROM openjdk:17-jdk-alpine

# 빌드된 JAR 파일을 도커 이미지에 복사
COPY build/libs/*.jar /app/
# 빌드된 JAR 파일을 도커 이미지에 복사 (파일명을 정확히 기입)
COPY build/libs/X-0.0.1-SNAPSHOT.jar /app/app.jar

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

0 comments on commit 359d21d

Please sign in to comment.