From 462f57e0ae1c7ab21769c8f240f50f799d1fec7d Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 4 Oct 2022 22:20:49 -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 | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7c9ee4..574f9a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,8 +21,13 @@ RUN mkdir -p /bin/ /config/ /data/ && \ echo "http://dl-cdn.alpinelinux.org/alpine/$ALPINE_VERSION/community" >> /etc/apk/repositories && \ echo "http://dl-cdn.alpinelinux.org/alpine/$ALPINE_VERSION/testing" >> /etc/apk/repositories && \ apk update -U --no-cache \ - apk add --no-cache curl gnupg tar unzip xz \ - apk --update --no-cache add \ + apk add --no-cache \ + icu-data-full \ + curl \ + gnupg \ + tar \ + unzip \ + xz \ s6-overlay \ bash \ ca-certificates \ @@ -85,12 +90,10 @@ RUN apk --update --no-cache add -t build-dependencies \ pcre-dev \ php8-dev \ php8-pear \ - samba-dev \ - tar \ - wget + samba-dev -RUN pip3 install --upgrade pip && \ - pip3 install nextcloud_news_updater +RUN python3 -m pip install --upgrade pip && \ + python3 -m pip install nextcloud_news_updater RUN mv /etc/php8 /etc/php && \ ln -s /etc/php /etc/php8 && \