You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
323 B
12 lines
323 B
FROM openjdk:21-jdk-slim
|
|
MAINTAINER xuxueli
|
|
|
|
ENV LOG_HOME=/data/applogs
|
|
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 -DLOG_HOME=$LOG_HOME -jar $JAVA_OPTS /app.jar $PARAMS"] |