2023-10-20 21:13:07 +00:00
|
|
|
FROM debian:bullseye
|
2019-12-10 22:38:22 +00:00
|
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2023-10-20 21:13:07 +00:00
|
|
|
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 iproute2 git
|
|
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
RUN pip install ansible
|
|
|
|
RUN pip install "openstacksdk>=1.0.0"
|
|
|
|
RUN pip install docker
|
|
|
|
RUN pip install docker-compose
|
2023-10-21 22:22:09 +00:00
|
|
|
RUN apt-get -y install duplicity python3-swiftclient python2
|