You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM java:8
- MAINTAINER king <1609724385@qq.com>
- VOLUME /tmp
- COPY target/dipperposition.jar dipperposition.jar
- COPY --from=hengyunabc/arthas:latest /opt/arthas /opt/arthas
- ENV TimeZone=Asia/Shanghai
- ENV active=dev
- ENV JAVA_OPTS="-Xmx256M -Xms256M"
- RUN ln -snf /usr/share/zoneinfo/$TimeZone /etc/localtime && echo $TimeZone > /etc/timezone
- ENTRYPOINT java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -Dio.netty.leakDetectionLevel=ADVANCED -jar /dipperposition.jar --spring.profiles.active=$active
-
- java -Xmx256M -Xms256M -Djava.security.egd=file:/dev/./urandom -Dio.netty.leakDetectionLevel=ADVANCED -jar /dipperposition.jar --spring.profiles.active=
|