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.

9 lines
320 B
Docker

3 years ago
FROM daocloud.io/library/java:8-jre-alpine
MAINTAINER tianze
ARG JAVA_OPTS="-Xmx128M"
ENV JAVA_OPTS=$JAVA_OPTS
3 years ago
ARG RUN_ARGS="--spring.profiles.active=pro"
3 years ago
ENV RUN_ARGS=$RUN_ARGS
3 years ago
ADD target/tianze-competition.jar /competition-service2.jar
ENTRYPOINT ["sh","-c","java $JAVA_OPTS -jar /competition-service2.jar $RUN_ARGS"]