Spaces:
Sleeping
Sleeping
File size: 603 Bytes
1e28122 4388ad1 1e28122 4388ad1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM openjdk:17-slim
RUN useradd -m zfileuser
# 安装必要的字体和图形库
RUN apt-get update && apt-get install -y curl fontconfig libfreetype6 fonts-dejavu && rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN curl -L -o zfile-4.1.5.jar https://github.com/zfile-dev/zfile/releases/download/4.1.5/zfile-4.1.5.jar
RUN mkdir -p /app/config
COPY application.properties /app/config/
RUN chmod 644 /app/config/application.properties
RUN chown -R zfileuser:zfileuser /app
USER zfileuser
EXPOSE 8080
# 添加无头模式参数
CMD ["java", "-Djava.awt.headless=true", "-jar", "/app/zfile-4.1.5.jar"] |