10 lines
400 B
Docker
10 lines
400 B
Docker
FROM flink:1.7
|
|
ARG PINPOINT_VERSION=2.2.0
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y zip \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
ADD https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-flink-job-${PINPOINT_VERSION}.jar /build/
|
|
COPY build/ /build/
|
|
COPY docker-bin/ /docker-bin/
|
|
ENTRYPOINT ["/docker-bin/docker-entrypoint.sh"] |