forked from wangjiadong/comp
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.
16 lines
377 B
16 lines
377 B
1 year ago
|
FROM anapsix/alpine-java:8_server-jre_unlimited
|
||
|
|
||
|
MAINTAINER jeecgos@163.com
|
||
|
|
||
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
||
|
|
||
|
RUN mkdir -p /jeecg-demo-cloud
|
||
|
|
||
|
WORKDIR /jeecg-demo-cloud
|
||
|
|
||
|
EXPOSE 7002
|
||
|
|
||
|
ADD ./target/jeecg-demo-cloud-start-3.5.3.jar ./
|
||
|
|
||
|
CMD sleep 1;java -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jeecg-demo-cloud-start-3.5.3.jar
|