Skip to content

Commit d64eb40

Browse files
committed
fix: 줄바꿈 문제 해결
1 parent 4240f42 commit d64eb40

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

Dockerfile

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,12 @@ HEALTHCHECK --interval=30s --timeout=3s --start-period=40s --retries=3 \
4141
CMD wget --no-verbose --tries=1 --spider http://localhost:8080/actuator/health || exit 1
4242

4343
# 실행
44-
ENTRYPOINT ["java",
45-
"-XX:+UseContainerSupport",
46-
"-XX:MaxRAMPercentage=60.0",
47-
"-XX:InitialRAMPercentage=40.0",
48-
"-Xss512k",
49-
"-Duser.timezone=Asia/Seoul",
50-
"-Djava.security.egd=file:/dev/./urandom",
51-
"-jar",
52-
"app.jar"
53-
]
44+
ENTRYPOINT ["java", \
45+
"-XX:+UseContainerSupport", \
46+
"-XX:MaxRAMPercentage=60.0", \
47+
"-XX:InitialRAMPercentage=40.0", \
48+
"-Xss512k", \
49+
"-Duser.timezone=Asia/Seoul", \
50+
"-Djava.security.egd=file:/dev/./urandom", \
51+
"-jar", \
52+
"app.jar"]

0 commit comments

Comments
 (0)