mirror of
https://github.com/jeecgboot/JimuReport.git
synced 2025-10-13 13:57:49 +00:00
15 lines
397 B
Docker
15 lines
397 B
Docker
FROM registry.cn-hangzhou.aliyuncs.com/dockerhub_mirror/java:17-anolis
|
|
|
|
MAINTAINER jeecgos@163.com
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
RUN mkdir -p /jimureport
|
|
|
|
WORKDIR /jimureport
|
|
|
|
EXPOSE 8085
|
|
|
|
ADD ./target/jimureport-example-2.2.jar ./
|
|
|
|
CMD java -DMYSQL-HOST=jimureport-mysql -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jimureport-example-2.2.jar |