From da38850c300390738d0a22468c0c64d7feb93563 Mon Sep 17 00:00:00 2001 From: casjay Date: Mon, 10 Oct 2022 22:51:32 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e294f26..f903c95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,13 +14,15 @@ ENV TZ="$TIMEZONE" \ RUN set -ex; \ rm -Rf "/etc/apk/repositories"; \ + mkdir -p "/usr/local/share/template-files/config/lighttpd/defaults" echo "http://dl-cdn.alpinelinux.org/alpine/$alpine_version/main" >> "/etc/apk/repositories"; \ echo "http://dl-cdn.alpinelinux.org/alpine/$alpine_version/community" >> "/etc/apk/repositories"; \ if [ "$alpine_version" = "edge" ]; then echo "http://dl-cdn.alpinelinux.org/alpine/$alpine_version/testing" >> "/etc/apk/repositories" ; fi ; \ apk update --update-cache && apk add \ lighttpd \ lighttpd-mod_auth \ - lighttpd-mod_webdav + lighttpd-mod_webdav && \ + cp -Rf "/etc/lighttpd/." "/usr/local/share/template-files/config/lighttpd/defaults/" COPY ./bin/. /usr/local/bin/ COPY ./data/. /usr/local/share/template-files/data/