This repository has been archived on 2026-07-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
rdiff-backup-dockerized/Dockerfile
T
2017-12-26 12:46:05 +01:00

8 lines
190 B
Docker

FROM python:2
WORKDIR /root
RUN apt-get update && apt-get install rdiff-backup --no-install-recommends -y && apt-get clean && rm -rf /var/lib/apt/lists/*
COPY ./backup.sh /root/backup.sh