docker-duplicity/Dockerfile

13 lines
512 B
Docker
Raw Normal View History

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
RUN apt-get -y install duplicity