From 3b0bab65ef79bfd2fdc0a5d909e502ee0d13f51b Mon Sep 17 00:00:00 2001 From: belljun3395 <195850@jnu.ac.kr> Date: Wed, 21 Aug 2024 23:14:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20pinpoint=20=EB=8F=84=EC=BB=A4=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=9E=90=EB=B0=94=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/Dockerfile.pinpoint | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile.pinpoint b/api/Dockerfile.pinpoint index 505ba0f0..5b0ab26a 100644 --- a/api/Dockerfile.pinpoint +++ b/api/Dockerfile.pinpoint @@ -1,4 +1,4 @@ -FROM openjdk:17-oracle +FROM openjdk:18-oracle RUN mkdir -p /logs @@ -21,4 +21,4 @@ COPY ${JAR_FILE} app.jar VOLUME /pinpoint-agent -ENTRYPOINT java --XX:MaxGCPauseMillis=100 -XX:InitialRAMPercentage=50.0 -XX:MaxRAMPercentage=80.0 -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 $JAVA_OPTS jar -javaagent:/pinpoint-agent/pinpoint-bootstrap.jar -Dpinpoint.profiler.profiles.active=release -Dpinpoint.agentId=$PINPOINT_AGENT_ID -Dpinpoint.applicationName=$PINPOINT_AGENT_APPLICATION_NAME app.jar +ENTRYPOINT java -XX:InitialRAMPercentage=50.0 -XX:MaxRAMPercentage=80.0 -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 $JAVA_OPTS jar -javaagent:/pinpoint-agent/pinpoint-bootstrap.jar -Dpinpoint.profiler.profiles.active=release -Dpinpoint.agentId=$PINPOINT_AGENT_ID -Dpinpoint.applicationName=$PINPOINT_AGENT_APPLICATION_NAME app.jar