2020-08-25 23:51:56 +00:00
|
|
|
FROM openjdk:8-jdk-alpine
|
2018-05-11 09:30:45 +00:00
|
|
|
|
2021-12-23 05:14:53 +00:00
|
|
|
ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.3.3}
|
2022-04-20 07:31:50 +00:00
|
|
|
ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-web-boot-${PINPOINT_VERSION}.jar
|
2018-05-11 09:30:45 +00:00
|
|
|
|
2020-08-25 23:51:56 +00:00
|
|
|
RUN mkdir -p /pinpoint/config \
|
|
|
|
&& mkdir -p /pinpoint/scripts
|
2018-05-11 09:30:45 +00:00
|
|
|
|
2020-08-25 23:51:56 +00:00
|
|
|
COPY /build/config/pinpoint-web.properties /pinpoint/config/
|
|
|
|
COPY /build/scripts/start-web.sh /pinpoint/scripts/
|
|
|
|
#temporary line for local test
|
2021-12-23 05:14:53 +00:00
|
|
|
#COPY /pinpoint-web-boot-2.3.3-SNAPSHOT.jar /pinpoint/pinpoint-web-boot.jar
|
2018-05-11 09:30:45 +00:00
|
|
|
|
2020-09-10 13:14:21 +00:00
|
|
|
RUN apk --no-cache add curl \
|
|
|
|
&& chmod a+x /pinpoint/scripts/start-web.sh \
|
2020-08-25 23:51:56 +00:00
|
|
|
&& chmod a+x /pinpoint/config/pinpoint-web.properties \
|
|
|
|
&& curl -SL ${INSTALL_URL} -o /pinpoint/pinpoint-web-boot.jar
|
|
|
|
|
|
|
|
#entry point to start-web.sh for future use.
|
|
|
|
ENTRYPOINT ["sh", "/pinpoint/scripts/start-web.sh"]
|