X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FMON%2FDockerfile;h=71b6bbbd209d503c3b397857fba86020b68623c3;hb=bfb7790d10dfc34c17976c8e60372543af33a618;hp=c1ab2fabd667f6ebf4c4b48c8e9af4a692a014f0;hpb=0eab83f6373c7e1f49520f70092cea9c23549ad4;p=osm%2Fdevops.git diff --git a/docker/MON/Dockerfile b/docker/MON/Dockerfile index c1ab2fab..71b6bbbd 100644 --- a/docker/MON/Dockerfile +++ b/docker/MON/Dockerfile @@ -24,11 +24,21 @@ FROM ubuntu:16.04 LABEL authors="Guillermo Calvino" -RUN apt-get update && apt-get -y install curl software-properties-common - -RUN apt-get --yes update \ - && apt-get --yes install git python python-pip python3 python3-pip libmysqlclient-dev libssl-dev libffi-dev \ - && pip3 install pip==9.0.3 +RUN apt-get update \ + && apt-get -y install curl \ + software-properties-common \ + git \ + python \ + python-pip \ + python3 \ + python3-pip \ + libmysqlclient-dev \ + libssl-dev \ + libffi-dev \ + mysql-client \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* \ + && pip3 install pip==9.0.3 RUN pip3 install 'macaroonbakery>=1.1,<2.0' 'pyRFC3339>=1.0,<2.0' \ 'pyyaml>=3.0,<4.0' 'theblues>=0.3.8,<1.0' 'websockets>=4.0,<5.0' \ @@ -39,15 +49,16 @@ ARG RELEASE=ReleaseFOUR-daily ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg ARG REPOSITORY=testing -RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - -RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} MON N2VC common" && apt update - ARG MON_VERSION ARG COMMON_VERSION ARG N2VC_VERSION -RUN apt-get --yes update && apt-get -y install python3-osm-common${COMMON_VERSION} python3-osm-mon${MON_VERSION} python3-n2vc${N2VC_VERSION} - +RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - \ + && add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} MON N2VC common" \ + && apt update \ + && apt-get -y install python3-osm-common${COMMON_VERSION} \ + python3-osm-mon${MON_VERSION} \ + python3-n2vc${N2VC_VERSION} COPY scripts/ scripts/ ENV OSMMON_MESSAGE_DRIVER kafka @@ -71,7 +82,7 @@ ENV OSMMON_PROMETHEUS_URL http://prometheus:9090 EXPOSE 8000 -HEALTHCHECK --interval=5s --timeout=2s --retries=12 \ +HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \ CMD osm-mon-healthcheck || exit 1 -CMD /bin/bash scripts/runInstall.sh +CMD /bin/bash scripts/start.sh