Merge "Portal Spring Boot Development"
[portal.git] / deliveries / Dockerfile.widgetms
1 # Large image
2 # FROM openjdk:8-jdk
3 # Tiny image; it includes java and nc
4 FROM openjdk:8-alpine
5
6 # Arguments are supplied by build script;
7 # the defaults below only support testing
8 ARG WMS_JAR=build/widget-ms.jar
9 # Onejar
10 COPY ${WMS_JAR} /app.jar
11 RUN sh -c 'touch /app.jar'
12
13 # Launch script
14 COPY start-wms.sh /
15
16 # Define default command
17 CMD /start-wms.sh