Newer
Older
xxl-job-dm / xxl-job-executor-samples / xxl-job-executor-sample-springboot / Dockerfile
xuxueli on 29 Mar 2020 274 bytes update rm
FROM openjdk:8-jre-slim
MAINTAINER xuxueli

ENV PARAMS=""

ENV TZ=PRC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

ADD target/xxl-job-executor-sample-springboot-*.jar /app.jar

ENTRYPOINT ["sh","-c","java -jar $JAVA_OPTS /app.jar $PARAMS"]