【ADD】集成原生Flowable-ui

This commit is contained in:
zhongmx
2023-06-02 17:50:20 +08:00
parent 25295fee34
commit 5125dc5af2
21 changed files with 1268 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
FROM anapsix/alpine-java:8_server-jre_unlimited
MAINTAINER zmx
RUN mkdir -p /ruoyi/flow/ui/logs
WORKDIR /ruoyi/flow/ui
ENV TZ=PRC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
EXPOSE 9205
ADD ./target/ruoyi-flow-ui.jar ./app.jar
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]