From: tierno Date: Wed, 19 Jun 2019 15:30:16 +0000 (+0000) Subject: bug 761: change RO Dockerfile to launch RO start script X-Git-Tag: v7.0.0rc1~105 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fdevops.git;a=commitdiff_plain;h=1ab62ca2a145bd2bd592f6beb2d665d8204e7bfb bug 761: change RO Dockerfile to launch RO start script This script send logs by default to stderr instead of file Change-Id: I8e1233cad57cc7b509216ede4e642470839996f2 Signed-off-by: tierno --- diff --git a/docker/RO/Dockerfile b/docker/RO/Dockerfile index e5c29d18..4240d26d 100644 --- a/docker/RO/Dockerfile +++ b/docker/RO/Dockerfile @@ -20,9 +20,6 @@ ARG IM_VERSION RUN apt-get update && apt-get install -y python-osm-ro${RO_VERSION} python-osm-im${IM_VERSION} -RUN mkdir -p /bin/RO - -COPY scripts/ /bin/RO VOLUME /var/log/osm @@ -51,4 +48,5 @@ ENV RO_DB_OVIM_NAME=mano_vim_db HEALTHCHECK --start-period=130s --interval=10s --timeout=5s --retries=12 \ CMD curl --silent --fail localhost:9090/openmano/tenants || exit 1 -CMD /bin/RO/start.sh +CMD /usr/bin/RO-start.sh +