Commit c43ce028 by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents 5e36b3a7 d2ae3820
Showing with 4 additions and 2 deletions
......@@ -3,9 +3,12 @@ FROM openjdk:11-jre-slim as builder
LABEL author="yuluo" \
email="yuluo829@aliyun.com"
ENV TZ=Asia/Shanghai
RUN echo -e "${TZ}" > /etc/timezone && ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime
ADD ./project-order/target/project-order-*.jar /app.jar
RUN sh -c 'touch /app.jar'
EXPOSE 8013
ENTRYPOINT ["java", "-jar","/app.jar"]
\ No newline at end of file
ENTRYPOINT ["java", "-jar","/app.jar"]
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!