This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
backup-bot/Dockerfile

13 lines
241 B
Docker

FROM python:3-alpine
RUN apk --no-cache add \
bash=5.0.17-r0 \
borgbackup=1.1.11-r2 \
openssh-client=8.3_p1-r0 \
mariadb-client=10.4.13-r0
RUN pip install --no-cache-dir \
borgmatic==1.5.10
CMD ["borgmatic", "--verbosity", "1"]