You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
784 B
23 lines
784 B
# 基础镜像 |
|
FROM eclipse-temurin:8u392-b08-jre-centos7 |
|
LABEL maintainer=jnpf-team |
|
|
|
# 设置时区 |
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ |
|
&& echo 'Asia/Shanghai' >/etc/timezone |
|
|
|
# 解决连接SQLServer安全错误 |
|
# 如您使用SQLServer数据库,把以下注释取消 |
|
# COPY security/java.security /opt/java/openjdk/lib/security |
|
|
|
# 指定运行时的工作目录 |
|
WORKDIR /wwwroot/jnpfsoft/jnpf-server/jnpf-visualdata |
|
|
|
# 将构建产物jar包拷贝到运行时目录中 |
|
COPY jnpf-visualdata/jnpf-visualdata-server/target/*.jar ./jnpf-visualdata.jar |
|
|
|
# 指定容器内运行端口 |
|
EXPOSE 30011 |
|
|
|
# 指定容器启动时要运行的命令 |
|
ENTRYPOINT ["/bin/sh","-c","java -Dfile.encoding=utf8 -Djava.security.egd=file:/dev/./urandom -jar jnpf-visualdata.jar"] |