2023-10-16 20:51:18 +00:00
|
|
|
FROM debian:bullseye
|
|
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN echo "deb http://http.debian.net/debian bullseye-backports main" >> /etc/apt/sources.list
|
2024-10-20 20:56:57 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get -y install pip openssh-client iproute2 git && \
|
|
|
|
apt-get clean && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2023-10-16 20:51:18 +00:00
|
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
2024-10-20 20:56:57 +00:00
|
|
|
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"
|
|
|
|
WORKDIR /root
|
|
|
|
RUN git clone https://git.scimetis.net/yohan/ovh_instance_playbooks.git
|
|
|
|
WORKDIR /root/ovh_instance_playbooks
|
|
|
|
RUN ./install_requirements.sh
|
|
|
|
WORKDIR /root
|