You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM openjdk:8-jdk-alpine as builder
|
|
|
|
LABEL author="yuluo" \
|
|
email="yuluo829@aliyun.com"
|
|
|
|
ADD ./integrated-gateway/target/integrated-gateway-*.jar /app.jar
|
|
|
|
RUN sh -c 'touch /app.jar'
|
|
EXPOSE 30010
|
|
|
|
ENTRYPOINT ["java", "-jar","/app.jar"] |