Skip to content

Commit

Permalink
[#28] fix: jar 파일 이름 변경 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyerinhwang-sailin authored Jan 14, 2025
1 parent b9b4546 commit 2cbb90e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ FROM openjdk:17-jdk-alpine
WORKDIR /app
COPY --from=builder /usr/src/build/libs/napzak-0.0.1-SNAPSHOT.jar /app/napzak.jar

ENTRYPOINT ["java", "-jar", "/app/napzak.jar", "--spring.profiles.active=dev"]
ENTRYPOINT ["java", "-jar", "/app/app.jar", "--spring.profiles.active=dev"]
2 changes: 1 addition & 1 deletion Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ FROM openjdk:17-jdk-alpine
WORKDIR /app
COPY --from=builder /usr/src/build/libs/napzak-0.0.1-SNAPSHOT.jar /app/napzak.jar

ENTRYPOINT ["java", "-jar", "/app/napzak.jar", "--spring.profiles.active=prod"]
ENTRYPOINT ["java", "-jar", "/app/app.jar", "--spring.profiles.active=prod"]

0 comments on commit 2cbb90e

Please sign in to comment.