代码拉取完成,页面将自动刷新
FROM 10.0.2.18:88/devops/openjdk:8-jdk
ENV PORT 8080
ENV CLASSPATH /opt/lib
EXPOSE 8080
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# copy pom.xml and wildcards to avoid this command failing if there's no target/lib directory
COPY pom.xml target/lib* /opt/lib/
# NOTE we assume there's only 1 jar in the target dir
# but at least this means we don't have to guess the name
# we could do with a better way to know the name - or to always create an app.jar or something
COPY target/*.jar /opt/app.jar
WORKDIR /opt
#CMD ["java", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseCGroupMemoryLimitForHeap", "-Dfile.encoding=UTF-8", "-Djava.security.egd=file:/dev/./urandom", "-Duser.timezone=GMT+08", "-Xms256m", "-Xmx256m", "-jar", "app.jar"]
ENV PARAMS="--spring.profiles.active=prod"
ENTRYPOINT ["/bin/sh", "-c", "java -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Duser.timezone=GMT+08 -Xms256m -Xmx256m -jar app.jar ${PARAMS}"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。