公告板
版本库
filestore
活动
搜索
登录
main
/
lmk-xxl-job
绿满筐-xxl-job
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
初始化
xiangpei
2025-05-22
631e9d709d7e3f420a2ef8017d1d680f4e32ede6
[lmk-xxl-job.git]
/
xxl-job-executor-samples
/
xxl-job-executor-sample-springboot
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
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"]