From: Felipe Vicens Date: Sat, 30 Nov 2019 18:35:52 +0000 (+0100) Subject: Installing juju after module installation for dependencies X-Git-Tag: v7.0.0rc1~17 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fdevops.git;a=commitdiff_plain;h=ce8b5a496cf631f2ed9cc4f6041227801767e0eb Installing juju after module installation for dependencies Change-Id: I651150e37b4206e0e1827e83ef6815685e4cf25c Signed-off-by: Felipe Vicens --- diff --git a/docker/MON/Dockerfile b/docker/MON/Dockerfile index 4b83d8eb..ecb475fb 100644 --- a/docker/MON/Dockerfile +++ b/docker/MON/Dockerfile @@ -40,7 +40,9 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* \ && pip3 install pip==9.0.3 -RUN python3 -m pip install -U juju +RUN pip3 install 'macaroonbakery>=1.1,<2.0' 'pyRFC3339>=1.0,<2.0' \ + 'pyyaml>=5.1.2' 'theblues>=0.3.8,<1.0' 'websockets>=4.0,<5.0' \ + 'paramiko' # PyNaCl ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian ARG RELEASE=ReleaseFOUR-daily @@ -57,6 +59,10 @@ RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - \ && apt-get -y install python3-osm-common${COMMON_VERSION} \ python3-osm-mon${MON_VERSION} \ python3-n2vc${N2VC_VERSION} + + +RUN python3 -m pip install -U juju + COPY scripts/ scripts/ ENV OSMMON_MESSAGE_DRIVER kafka