From c416e69a42736b2186d03ee124c82d294b66da32 Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Wed, 23 Oct 2024 21:08:18 +0200 Subject: [PATCH] Fix dependencies. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f6001d..5d60745 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,13 @@ MAINTAINER yohan <783b8c87@scimetis.net> ENV DEBIAN_FRONTEND noninteractive RUN echo "deb http://http.debian.net/debian bullseye-backports main" >> /etc/apt/sources.list RUN apt-get update && \ - apt-get -y install python3-openstacksdk pip openssh-client sshpass iproute2 git && \ + apt-get -y install pip openssh-client sshpass iproute2 git && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* ENV TZ=Europe/Paris RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN pip install "ansible==8.5" -RUN pip install "openstacksdk==1.5.0" +RUN pip install "openstacksdk==0.61.0" RUN pip install "docker==6.1.3" RUN pip install "docker-compose==1.29.2" RUN pip install "ovh==1.1.0"