lolosia-backend/Dockerfile

20 lines
344 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.

#制定java镜像的版本
FROM java:17
#声明作者
LABEL org.opencontainers.image.authors="Lolosia"
#进入到镜像内app目录下面类似cd
WORKDIR /app/
#复制fat.jar到镜像内app目录下
ADD ./build/libs/*-fat.jar /app/
RUN mv *-fat.jar app.jar
#对外暴露的端口
EXPOSE 58801
#程序启动脚本
CMD java -jar app.jar