From 5f753665ac6941d9108690797d125ef7c8de456c Mon Sep 17 00:00:00 2001 From: szaimen Date: Wed, 9 Mar 2022 13:49:09 +0100 Subject: [PATCH] revert migrating borg to alpine Signed-off-by: szaimen --- Containers/borgbackup/Dockerfile | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Containers/borgbackup/Dockerfile b/Containers/borgbackup/Dockerfile index a1e8f1e8..e52fbf12 100644 --- a/Containers/borgbackup/Dockerfile +++ b/Containers/borgbackup/Dockerfile @@ -1,17 +1,15 @@ -FROM alpine:3.15.0 +FROM debian:bullseye-20220125-slim RUN set -ex; \ \ - apk add --update --no-cache \ - bash \ + apt-get update; \ + apt-get install -y --no-install-recommends \ borgbackup \ rsync \ - fuse - -Run set -ex; \ - \ - echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ - apk add --update --no-cache py3-llfuse + fuse \ + python3-llfuse \ + ; \ + rm -rf /var/lib/apt/lists/* VOLUME /root