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.
fu-hsi-service/docker/fu-hsi-web/Dockerfile

13 lines
412 B
Docker

# 设置基础镜像
FROM openjdk:17-jdk-alpine
# 复制java jar 到容器中
#COPY fu-hsi-service-1.0.0.jar /data/fu-hsi/web/fu-hsi-service-1.0.0.jar
# 暴漏服务端口
EXPOSE 8097
EXPOSE 9999
# 设置启动命令
ENTRYPOINT ["java","-Xms256m","-Xmx1g", "-Xss2m", "-Dspring.profiles.active=prod","-Dfile.encoding=utf-8","-Duser.timezone=Asia/Shanghai","-jar","/data/fu-hsi/web/fu-hsi-service-1.0.0.jar"]