Skip to content

Commit

Permalink
fix: pinpoint 도커 파일 자바 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Aug 21, 2024
1 parent 8bff76a commit 3b0bab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/Dockerfile.pinpoint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:17-oracle
FROM openjdk:18-oracle

RUN mkdir -p /logs

Expand All @@ -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

0 comments on commit 3b0bab6

Please sign in to comment.