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.
13 lines
222 B
13 lines
222 B
FROM openjdk:8-jdk-alpine
|
|
|
|
ENV APP_FILE im-server.jar
|
|
ENV APP_HOME /data/boxim
|
|
|
|
WORKDIR $APP_HOME
|
|
|
|
COPY ./dist/$APP_FILE $APP_HOME/
|
|
|
|
EXPOSE 8877
|
|
EXPOSE 8878
|
|
|
|
CMD java -jar $APP_HOME/$APP_FILE --spring.profiles.active=prod
|
|
|