You cannot 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-beijing.aliyuncs.com/longbei/jdk:latest
|
|
|
|
# 暴漏服务端口
|
|
EXPOSE 8899
|
|
|
|
# 设置启动命令
|
|
ENTRYPOINT ["java","-Xms256m","-Xmx1g","-Dspring.profiles.active=prod","-Dfile.encoding=utf-8","-Duser.timezone=Asia/Shanghai","-jar","/data/vp/virtual-patient-web-1.0-SNAPSHOT.jar"]
|