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