Files
biz_service_ebtp_extend/Dockerfile-gz

11 lines
477 B
Plaintext
Raw Normal View History

2021-01-15 17:43:51 +08:00
FROM harbor.dcos.guangzhou.unicom.local/eshop/skywalking_agent_springboot_8.1.0:v1.0
ENV LC_ALL=zh_CN.utf8
ENV LANG=zh_CN.utf8
ENV LANGUAGE=zh_CN.utf8
RUN localedef -c -f UTF-8 -i zh_CN zh_CN.utf8
2021-02-25 19:40:22 +08:00
RUN mkdir -p /model
COPY /target/classes/model/. /model/
2021-01-15 17:43:51 +08:00
ADD /target/biz_service_ebtp_extend-0.0.1.jar /biz_service_ebtp_extend-0.0.1.jar
2021-03-08 16:52:57 +08:00
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-Dspring.profiles.active=uat", "-jar", "/biz_service_ebtp_extend-0.0.1.jar"]