From 6a4a349a1be3ad5460e507dc4e2098936fd23859 Mon Sep 17 00:00:00 2001 From: "Christopher Lott (cl778h)" Date: Tue, 10 Oct 2017 15:54:38 -0400 Subject: Extend deployment for CSIT env quirks Define new environment variables so a host IP and name can be added to a docker container /etc/hosts file for inter-app comms using the semi-well-known name portal.api.simpledemo.openecomp.org Issue: PORTAL-59 Change-Id: If1c23a77a4b227aac314d966f41e5d5aaad846f8 Signed-off-by: Christopher Lott (cl778h) --- deliveries/Dockerfile.widgetms | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'deliveries/Dockerfile.widgetms') diff --git a/deliveries/Dockerfile.widgetms b/deliveries/Dockerfile.widgetms index 16bf60b1..72a11bb5 100644 --- a/deliveries/Dockerfile.widgetms +++ b/deliveries/Dockerfile.widgetms @@ -1,18 +1,19 @@ # Large image # FROM openjdk:8-jdk -# Very small image +# Tiny image; it includes java and nc FROM frolvlad/alpine-oraclejdk8:slim # Arguments are supplied by build script; # the defaults below only support testing ARG WMS_JAR=build/widget-ms.jar -# Launch script -COPY start-wms-cmd.sh / -# Wait script, which depends on nc -COPY wait-for.sh / # Onejar COPY ${WMS_JAR} /app.jar RUN sh -c 'touch /app.jar' -VOLUME /tmp -ENV JAVA_OPTS="" + +# Wait script, which depends on nc +COPY wait-for.sh / +# Launch script +COPY start-wms-cmd.sh / + +# Define default command CMD /start-wms-cmd.sh -- cgit 1.2.3-korg