Digital Office Automation System Backend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Dockerfile 359B

12345678910111213141516
  1. FROM anapsix/alpine-java:8_server-jre_unlimited
  2. MAINTAINER Lion Li
  3. RUN mkdir -p /ruoyi/xxljob/logs
  4. WORKDIR /ruoyi/xxljob
  5. ENV TZ=PRC
  6. RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
  7. EXPOSE 9100
  8. ADD ./target/ruoyi-xxl-job-admin.jar ./app.jar
  9. ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]