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
299 B
16 lines
299 B
|
2 years ago
|
FROM bladex/alpine-java:openjdk8-openj9_cn_slim
|
||
|
|
|
||
|
|
MAINTAINER bladejava@qq.com
|
||
|
|
|
||
|
|
RUN mkdir -p /lab/gateway
|
||
|
|
|
||
|
|
WORKDIR /lab/gateway
|
||
|
|
|
||
|
|
EXPOSE 80
|
||
|
|
|
||
|
|
ADD ./target/lab-gateway.jar ./app.jar
|
||
|
|
|
||
|
|
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
|
||
|
|
|
||
|
|
CMD ["--spring.profiles.active=prod"]
|