all-in-one/Containers/borgbackup/Dockerfile
dependabot[bot] 93de08cd54
Bump alpine from 3.17.1 to 3.17.2 in /Containers/borgbackup
Bumps alpine from 3.17.1 to 3.17.2.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-13 13:04:00 +00:00

22 lines
383 B
Docker

FROM alpine:3.17.2
RUN set -ex; \
\
apk add --no-cache \
bash \
borgbackup \
rsync \
fuse \
py3-llfuse \
jq
VOLUME /root
COPY start.sh /usr/bin/
COPY backupscript.sh /
RUN chmod +x /usr/bin/start.sh; \
chmod +x /backupscript.sh
USER root
ENTRYPOINT ["start.sh"]
LABEL com.centurylinklabs.watchtower.monitor-only="true"