You can not 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
323 B
16 lines
323 B
|
3 years ago
|
FROM bladex/alpine-java:8_server-jre_cn_unlimited
|
||
|
|
|
||
|
|
MAINTAINER bladejava@qq.com
|
||
|
|
|
||
|
|
RUN mkdir -p /blade/plugin/workflow
|
||
|
|
|
||
|
|
WORKDIR /blade/plugin/workflow
|
||
|
|
|
||
|
|
EXPOSE 8009
|
||
|
|
|
||
|
|
ADD ./target/lab-workflow.jar ./app.jar
|
||
|
|
|
||
|
|
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
|
||
|
|
|
||
|
|
CMD ["--spring.profiles.active=dev"]
|