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.
14 lines
329 B
14 lines
329 B
FROM openjdk:21-jdk-slim
|
|
#FROM openjdk:17-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-admin-*.jar /app.jar
|
|
|
|
ENTRYPOINT ["sh","-c","java -DLOG_HOME=$LOG_HOME -jar $JAVA_OPTS /app.jar $PARAMS"] |