dockerfiles/zfile/Dockerfile

15 lines
412 B
Docker
Raw Normal View History

2022-05-26 17:14:23 +08:00
FROM ibm-semeru-runtimes:open-8-jre
2022-02-01 22:01:09 +08:00
LABEL maintainer="Stille <stille@ioiox.com>"
2021-06-11 12:13:08 +08:00
2022-11-27 11:00:23 +08:00
ENV VERSION 4.1.3
2021-06-11 12:13:08 +08:00
WORKDIR /root
2022-05-26 17:14:23 +08:00
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
2022-07-31 21:46:36 +08:00
RUN curl -L -o app.jar https://github.com/zfile-dev/zfile/releases/download/${VERSION}/zfile-${VERSION}.jar
2021-06-11 12:13:08 +08:00
EXPOSE 8080
2022-05-26 17:14:23 +08:00
ENTRYPOINT java $JAVA_OPTS -Xshareclasses -Xquickstart -jar /root/app.jar