wlcb-system-house/Dockerfile

7 lines
285 B
Docker
Raw Normal View History

FROM openjdk:8u292-jre-buster
ARG JAR_FILE=/target/*.jar
COPY ${JAR_FILE} system-house.jar
ENTRYPOINT ["java","-jar","-Dspring.profiles.active=prod","/system-house.jar"]
# 时区问题
RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone