Fixes Bug 1436- Python3-Cryptography dependencies updated 75/10275/2
authorJoão Fonseca <jpedrofonseca@av.it.pt>
Mon, 8 Feb 2021 22:19:19 +0000 (22:19 +0000)
committerbeierlm <mark.beierl@canonical.com>
Tue, 9 Feb 2021 14:50:40 +0000 (15:50 +0100)
Change-Id: I533d54312c389c6c0cadf435b5eee3bf4a52ff67
Signed-off-by: João Fonseca <jpedrofonseca@av.it.pt>
docker/RO/Dockerfile

index 24b1425..89ed385 100644 (file)
@@ -46,7 +46,12 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3-
     python3-osm-rovim-openstack${RO_VERSION} python3-osm-rovim-openvim${RO_VERSION} \
     python3-osm-rovim-vmware${RO_VERSION}
 
-# ensure right version is installed as pyhton3-ccryptography install an old version
+# ensure right version is installed as python3-cryptography install an old version
+# Since release 3.4 of python3-cryptography rust is an dependency
+
+RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential libssl-dev libffi-dev \
+    python3-dev cargo
+
 RUN python3 -m pip install --upgrade "cryptography>=2.5"
 
 VOLUME /var/log/osm