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.
15 lines
296 B
15 lines
296 B
1 year ago
|
FROM bladex/alpine-java:openjdk8-openj9_cn_slim
|
||
|
|
||
|
MAINTAINER h5u@163.com
|
||
|
|
||
|
RUN mkdir -p /logpm/patch
|
||
|
|
||
|
WORKDIR /logpm/patch
|
||
|
|
||
|
EXPOSE 19000
|
||
|
|
||
|
ADD ./target/logpm-patch.jar ./app.jar
|
||
|
|
||
|
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
|
||
|
CMD ["--spring.profiles.active=test"]
|