From a7af5fd3b06239632966e4534f888e1bea926eaf Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Wed, 23 Oct 2024 20:48:05 +0200 Subject: [PATCH] Add missing dependencies. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2489c74..1f6001d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ 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 pip openssh-client sshpass iproute2 git && \ + apt-get -y install python3-openstacksdk pip openssh-client sshpass iproute2 git && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* ENV TZ=Europe/Paris @@ -12,6 +12,7 @@ RUN pip install "ansible==8.5" RUN pip install "openstacksdk==1.5.0" RUN pip install "docker==6.1.3" RUN pip install "docker-compose==1.29.2" +RUN pip install "ovh==1.1.0" WORKDIR /root RUN git clone https://git.scimetis.net/yohan/ovh_instance_playbooks.git WORKDIR /root/ovh_instance_playbooks