24 lines
688 B
Docker
24 lines
688 B
Docker
# |— home
|
||
# |— app.jar - 启动jar报
|
||
# |— logs - 日志文件
|
||
# |— uploadPath - 上传路径
|
||
#指定构建镜像的起始镜像
|
||
FROM anolis-registry.cn-zhangjiakou.cr.aliyuncs.com/openanolis/openjdk:17-8.6
|
||
|
||
#执行 一些必备的条件
|
||
|
||
#定义时区参数
|
||
ENV TZ=Asia/Shanghai
|
||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
|
||
|
||
# 挂在工作目录 You,Moments ago · Uncommitted changes
|
||
VOLUME ["/home/logs/cloud-property","/home/uploadPath"]
|
||
|
||
#拷贝执行jar包文件
|
||
COPY ./cloud-property-server/target/cloud-property.jar /home/app.jar
|
||
|
||
#构建启动命令
|
||
ENTRYPOINT ["java","-Dfile.encoding=utf-8","-jar"]
|
||
CMD ["/home/app.jar"]
|