yd-yunxing-server/Dockerfile

9 lines
211 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 目前制作docker镜像依赖的jdk基线项目使用jdk17
FROM openjdk:17.0.2-oraclelinux8
WORKDIR /home/app
COPY app.jar app.jar
ENTRYPOINT ["java", "-jar", "app.jar", "--spring.profiles.active=dev"]