JimuReport/jimureport-example/Dockerfile

15 lines
412 B
Docker
Raw Normal View History

2024-09-27 07:40:07 +00:00
FROM registry.cn-hangzhou.aliyuncs.com/jeecgdocker/alpine-java:8_server-jre_unlimited
2021-03-22 10:00:30 +00:00
MAINTAINER jeecgos@163.com
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN mkdir -p /jimureport
WORKDIR /jimureport
EXPOSE 8085
2024-08-20 14:14:46 +00:00
ADD ./target/jimureport-example-1.8.jar ./
2021-03-22 10:00:30 +00:00
2024-08-20 14:14:46 +00:00
CMD java -DMYSQL-HOST=jimureport-mysql -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jimureport-example-1.8.jar