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.
|
FROM registry.cn-hangzhou.aliyuncs.com/dockerhub_mirror/java:21-anolis
|
|
|
|
MAINTAINER jeecgos@163.com
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
RUN mkdir -p /jeecg-cloud-nacos
|
|
|
|
WORKDIR /jeecg-cloud-nacos
|
|
|
|
EXPOSE 8848
|
|
|
|
ADD ./target/jeecg-cloud-nacos-3.7.2.jar ./
|
|
|
|
CMD sleep 30;java -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jeecg-cloud-nacos-3.7.2.jar
|