mirror of
https://gitee.com/log4j/pig.git
synced 2024-12-22 20:54:25 +08:00
18 lines
344 B
Docker
Executable File
18 lines
344 B
Docker
Executable File
FROM anapsix/alpine-java:8_server-jre_unlimited
|
|
|
|
MAINTAINER wangiegie@gmail.com
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
RUN mkdir -p /pig-auth
|
|
|
|
WORKDIR /pig-auth
|
|
|
|
EXPOSE 3000
|
|
|
|
ADD ./target/pig-auth.jar ./
|
|
|
|
CMD sleep 60;java -Djava.security.egd=file:/dev/./urandom -jar pig-auth.jar
|