Zhu Zhonghua
2025-04-07 cac21dda7e04ca5f2935daa0f0e5154492b5fa69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 基础镜像
FROM  openjdk:8-jre
# author
MAINTAINER ruoyi
 
# 挂载目录
VOLUME /home/ruoyi
# 创建目录
RUN mkdir -p /home/ruoyi
# 指定路径
WORKDIR /home/ruoyi
# 复制jar文件到路径
COPY ./jar/aps-modules-system.jar /home/ruoyi/aps-modules-system.jar
# 启动系统服务
ENTRYPOINT ["java","-jar","aps-modules-system.jar"]