dashboard
repositories
filestore
activity
search
login
2024
/
2024/mall4j/hxsl
基于mall4j产品的二开项目后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
init
lee
2024-12-18
efdb99f8cecc4afb592afad79c761081d5d5cf22
[2024/2024/mall4j/hxsl.git]
/
xxl-job
/
xxl-job-admin
/
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-admin-*.jar /application/app.jar
ENTRYPOINT ["sh","-c","java -jar $JAVA_OPTS /application/app.jar $PARAMS"]