From ab3ef06581ff68bcaf9be74d710911b359ef8f52 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 22 Dec 2022 17:50:49 +0100 Subject: [PATCH] migrate borgbackup to alpine Signed-off-by: Simon L --- Containers/borgbackup/Dockerfile | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Containers/borgbackup/Dockerfile b/Containers/borgbackup/Dockerfile index 3feb7530..65d39bdc 100644 --- a/Containers/borgbackup/Dockerfile +++ b/Containers/borgbackup/Dockerfile @@ -1,17 +1,14 @@ -FROM debian:bullseye-20230109-slim +FROM alpine:3.17.1 RUN set -ex; \ \ - echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list; \ - apt-get update; \ - apt-get install -y --no-install-recommends borgbackup -t bullseye-backports; \ - apt-get install -y --no-install-recommends \ + apk add --no-cache \ + bash \ + borgbackup \ rsync \ fuse \ - python3-llfuse \ - jq \ - ; \ - rm -rf /var/lib/apt/lists/* + py3-llfuse \ + jq VOLUME /root