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"]