You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 330 B

12345678910
  1. # 该镜像需要依赖的基础镜像
  2. FROM openjdk:8-jdk-alpine
  3. # 指定维护者名称
  4. MAINTAINER Mayday 420882008@qq.com
  5. VOLUME /tmp
  6. ARG JAR_FILE
  7. COPY ${JAR_FILE} app.jar
  8. COPY config config
  9. COPY deploy/yuqing/application.yml config/application.yml
  10. ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]