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.
16 lines
320 B
Docker
16 lines
320 B
Docker
3 years ago
|
FROM anapsix/alpine-java:8_server-jre_unlimited
|
||
|
|
||
|
MAINTAINER Lion Li
|
||
|
|
||
|
RUN mkdir -p /ruoyi/system
|
||
|
RUN mkdir -p /ruoyi/system/logs
|
||
|
RUN mkdir -p /ruoyi/system/temp
|
||
|
|
||
|
WORKDIR /ruoyi/system
|
||
|
|
||
|
EXPOSE 9201
|
||
|
|
||
|
ADD ./target/ruoyi-system.jar ./app.jar
|
||
|
|
||
|
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
|