All checks were successful
continuous-integration/drone/push Build is passing
13 lines
241 B
Docker
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"]
|