Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
angelSuho authored Jul 5, 2023
1 parent 13f79be commit 02021e0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
FROM openjdk:17-jdk-alpine
ADD https://github.com/pinpoint-apm/pinpoint/releases/download/1.7.3/pinpoint-agent-1.7.3.tar.gz /usr/local
RUN tar -zxvf /usr/local/pinpoint-agent-1.7.3.tar.gz -C /usr/local
RUN sed -i 's/profiler.collector.ip=127.0.0.1/profiler.collector.ip=101.101.219.220/g' /usr/local/pinpoint.config
ADD https://github.com/pinpoint-apm/pinpoint/releases/download/1.7.3/pinpoint-agent-2.5.2.tar.gz /usr/local
RUN tar -zxvf /usr/local/pinpoint-agent-2.5.2.tar.gz -C /usr/local
RUN sed -i 's/profiler.collector.ip=127.0.0.1/profiler.collector.ip=10.41.183.156/g' /usr/local/pinpoint-root.config
ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar
EXPOSE 8080
ENTRYPOINT ["java","-jar", \
"-javaagent:/usr/local/pinpoint-bootstrap-1.7.3.jar", \
"-Dpinpoint.agentId=abcd", \
"-javaagent:/usr/local/pinpoint-bootstrap-2.5.2.jar", \
"-Dpinpoint.applicationName=TrendPick", \
"-Dpinpoint.config=/usr/local/pinpoint.config", \
"-Dpinpoint.config=/usr/local/pinpoint-root.config", \
"-Dspring.profiles.active=prod", \
"/app.jar"]

0 comments on commit 02021e0

Please sign in to comment.