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.
15 lines
336 B
Docker
15 lines
336 B
Docker
FROM anapsix/alpine-java:8_server-jre_unlimited
|
|
|
|
MAINTAINER Lion Li
|
|
|
|
RUN mkdir -p /ruoyi/sentinel-dashboard
|
|
RUN mkdir -p /ruoyi/sentinel-dashboard/logs
|
|
|
|
WORKDIR /ruoyi/sentinel-dashboard
|
|
|
|
EXPOSE 8718
|
|
|
|
ADD ./target/ruoyi-sentinel-dashboard.jar ./app.jar
|
|
|
|
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
|