You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
285 B
Docker
15 lines
285 B
Docker
3 years ago
|
FROM anapsix/alpine-java:8_server-jre_unlimited
|
||
|
|
||
|
MAINTAINER helloworldwh@163.com
|
||
|
|
||
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
||
|
|
||
|
RUN mkdir -p /enfi-boot
|
||
|
|
||
|
WORKDIR /enfi-boot
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
ADD ./*.jar ./app.jar
|
||
|
|
||
|
CMD java -Djava.security.egd=file:/dev/./urandom -jar app.jar
|