# Large image
# FROM openjdk:8-jdk
# Tiny image; it includes java and nc
FROM openjdk:8-alpine

# Arguments are supplied by build script;
# the defaults below only support testing
ARG WMS_JAR=build/widget-ms.jar
# Onejar
COPY ${WMS_JAR} /app.jar
RUN sh -c 'touch /app.jar'

# Launch script
COPY start-wms.sh /

# Define default command
CMD /start-wms.sh