backup-bot/Dockerfile
Luke Murphy 4a8cebe14b
All checks were successful
continuous-integration/drone/push Build is passing
Add verbosity
2020-09-21 15:03:20 +02:00

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"]