From 3601e107e19ac8e2f5964cbb5867d6a2a82f2dd9 Mon Sep 17 00:00:00 2001 From: Joel Linn Date: Mon, 26 Nov 2018 22:50:04 +0100 Subject: [PATCH] Support for ACLs Added the needed build dependencies so that rsync-bpc can support access control lists. See makedepends line of the alpine build file for vanilla rsync: https://git.alpinelinux.org/cgit/aports/tree/main/rsync/APKBUILD --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6b49b51..b70580d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV PAR2_VERSION v0.8.0 # Install backuppc runtime dependencies RUN apk --no-cache --update add python3 rsync bash perl perl-archive-zip perl-xml-rss perl-cgi perl-file-listing expat samba-client iputils openssh openssl rrdtool msmtp lighttpd lighttpd-mod_auth gzip apache2-utils tzdata libstdc++ libgomp shadow \ # Install backuppc build dependencies - && apk --no-cache --update --virtual build-dependencies add gcc g++ libgcc linux-headers autoconf automake make git patch perl-dev python3-dev expat-dev curl wget \ + && apk --no-cache --update --virtual build-dependencies add gcc g++ libgcc linux-headers autoconf automake make git patch perl-dev python3-dev expat-dev acl-dev attr-dev popt-dev curl wget \ # Install supervisor && python3 -m ensurepip \ && pip3 install --upgrade pip circus \