You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
456 B
Docker
15 lines
456 B
Docker
# 设置基础镜像
|
|
FROM openjdk:17-jdk-alpine
|
|
|
|
# 设置时区(安装 tzdata 并配置)
|
|
RUN apk add --no-cache tzdata && \
|
|
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
echo "Asia/Shanghai" > /etc/timezone
|
|
|
|
|
|
# 暴漏服务端口
|
|
EXPOSE 8080
|
|
|
|
# 设置启动命令
|
|
ENTRYPOINT ["java","-Xms256m","-Xmx1g", "-Xss2m","-Dfile.encoding=utf-8","-Duser.timezone=Asia/Shanghai","-jar","/data/pdf-qa/web/pdf-qa-server-0.0.1-SNAPSHOT.jar"]
|