Skip to content

Commit

Permalink
fix(Dockerfile): 프로덕션 도커파일에서 스프링 애플리케이션을 stage 프로파일로 실행하는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
limehee committed Nov 25, 2024
1 parent b2a8e84 commit 959926f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ COPY --from=build /app/snapshot-dependencies/ ./
COPY --from=build /app/application/ ./

# Run the application
ENTRYPOINT ["java", "-Dspring.profiles.active=stage", "org.springframework.boot.loader.launch.JarLauncher"]
ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "org.springframework.boot.loader.launch.JarLauncher"]

0 comments on commit 959926f

Please sign in to comment.