From 051b56a80d8b2659873e289e0acb78a91f83200e Mon Sep 17 00:00:00 2001 From: mikekks Date: Tue, 25 Feb 2025 11:39:43 +0900 Subject: [PATCH] =?UTF-8?q?[UNI-186]=20feat:=20Xms=20500=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uniro_backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uniro_backend/Dockerfile b/uniro_backend/Dockerfile index 6b005e7..f5fba26 100644 --- a/uniro_backend/Dockerfile +++ b/uniro_backend/Dockerfile @@ -8,5 +8,5 @@ COPY ${JAR_FILE} uniro-server.jar ENV SPRING_PROFILE=${SPRING_PROFILE} # JVM 메모리 설정 추가 -ENTRYPOINT ["java", "-Duser.timezone=Asia/Seoul","-Dspring.profiles.active=${SPRING_PROFILE}","-XX:+HeapDumpOnOutOfMemoryError","-XX:HeapDumpPath=/tmp/heapdump.hprof", "-Xmx500m", "-jar", "uniro-server.jar"] +ENTRYPOINT ["java", "-Duser.timezone=Asia/Seoul","-Dspring.profiles.active=${SPRING_PROFILE}","-XX:+HeapDumpOnOutOfMemoryError","-XX:HeapDumpPath=/tmp/heapdump.hprof", "-Xmx500m", "-Xms500m", "-jar", "uniro-server.jar"]