Skip to content

Commit

Permalink
fix : docker file fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangHarim committed Jul 1, 2024
1 parent 2eba23d commit 8b2459c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar

# 어플리케이션 실행 및 로그 출력
CMD nohup java -jar /app.jar > stdout.log 2> stderr.log &
#CMD nohup java -jar /app.jar > stdout.log 2> stderr.log &
ENTRYPOINT ["java","-jar","/app.jar"]

0 comments on commit 8b2459c

Please sign in to comment.