X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FMON%2FDockerfile;h=96e1633fb11da6ad0aca0754baaa763996fb0272;hb=ca079d7049c9636883c737fd7e115b2d244e8ace;hp=c1ab2fabd667f6ebf4c4b48c8e9af4a692a014f0;hpb=0eab83f6373c7e1f49520f70092cea9c23549ad4;p=osm%2Fdevops.git diff --git a/docker/MON/Dockerfile b/docker/MON/Dockerfile index c1ab2fab..96e1633f 100644 --- a/docker/MON/Dockerfile +++ b/docker/MON/Dockerfile @@ -24,30 +24,39 @@ 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 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' \ - 'paramiko' # PyNaCl +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 juju ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian 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 +80,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