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.
14 lines
224 B
14 lines
224 B
|
2 years ago
|
FROM openjdk:8-jdk-alpine
|
||
|
|
|
||
|
|
ENV APP_FILE im-platform.jar
|
||
|
|
ENV APP_HOME /data/boxim
|
||
|
|
|
||
|
|
WORKDIR $APP_HOME
|
||
|
|
|
||
|
|
COPY ./dist/$APP_FILE $APP_HOME/
|
||
|
|
|
||
|
|
EXPOSE 8888
|
||
|
|
EXPOSE 9001
|
||
|
|
|
||
|
|
CMD java -jar $APP_HOME/$APP_FILE --spring.profiles.active=prod
|