mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
15 lines
347 B
Docker
15 lines
347 B
Docker
FROM anapsix/alpine-java:8_server-jre_unlimited
|
|
|
|
MAINTAINER jeecgos@163.com
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
RUN mkdir -p /jeecg-boot
|
|
|
|
WORKDIR /jeecg-boot
|
|
|
|
EXPOSE 8080
|
|
|
|
ADD ./target/jeecg-boot-module-system-2.3.0.jar ./
|
|
|
|
CMD sleep 60;java -Djava.security.egd=file:/dev/./urandom -jar jeecg-boot-module-system-2.3.0.jar |