diff --git a/docker-devel/Dockerfile b/docker-devel/Dockerfile index da2b167dc..a16ab3fba 100644 --- a/docker-devel/Dockerfile +++ b/docker-devel/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y patch wget pyth # Install IM RUN apt-get update && apt-get install --no-install-recommends -y python3-setuptools python3-pip python3-packaging python3-typing-extensions python3-jaraco.functools git && \ - pip3 install --break-system-packages msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute "azure-mgmt-network<=31.0.0" azure-mgmt-resource azure-mgmt-dns azure-identity && \ + pip3 install --break-system-packages msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute "azure-mgmt-network<31.0.0" azure-mgmt-resource azure-mgmt-dns azure-identity && \ pip3 install --break-system-packages pyOpenSSL pymongo ansible==12.3.0&& \ pip3 install --no-cache-dir --break-system-packages git+https://github.com/micafer/tosca-parser@im && \ pip3 install --break-system-packages git+https://github.com/grycap/im@$BRANCH && \ diff --git a/docker-py3/Dockerfile b/docker-py3/Dockerfile index acc277f73..046448c7e 100644 --- a/docker-py3/Dockerfile +++ b/docker-py3/Dockerfile @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y patch wget pyth # Install IM RUN apt-get update && apt-get install --no-install-recommends -y python3-setuptools python3-pip python3-packaging python3-typing-extensions python3-jaraco.functools git && \ - pip3 install --no-cache-dir --break-system-packages msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute "azure-mgmt-network<=31.0.0" azure-mgmt-resource azure-mgmt-dns azure-identity && \ + pip3 install --no-cache-dir --break-system-packages msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute "azure-mgmt-network<31.0.0" azure-mgmt-resource azure-mgmt-dns azure-identity && \ pip3 install --no-cache-dir --break-system-packages pyOpenSSL pymongo ansible==12.3.0 && \ pip3 install --no-cache-dir --break-system-packages git+https://github.com/micafer/tosca-parser@im && \ pip3 install --no-cache-dir --break-system-packages IM==${VERSION} && \