Files
RuoYi-Cloud-Plus/ruoyi-visual/ruoyi-powerjob-server/Dockerfile
疯狂的狮子Li 65351030ef add 新增 ruoyi-powerjob-server 整合 powerjob 框架
update 重构 ruoyi-job 适配 powerjob
remove 移除 xxljob 建议使用 powerjob
2023-06-29 12:16:13 +08:00

14 lines
261 B
Docker

FROM findepi/graalvm:java17-native
MAINTAINER Lion Li
RUN mkdir -p /ruoyi/powerjob/logs
WORKDIR /ruoyi/powerjob
EXPOSE 7700
ADD ./target/ruoyi-powerjob-server.jar ./app.jar
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]