From: James Alseth Date: Sat, 5 Sep 2020 02:19:56 +0000 (-0700) Subject: Use TLS when adding Alpine community repository in Dockerfile X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=9fd0e5e0dd5e4c2b1748ef604e780bb31e4ada89;p=akkoma Use TLS when adding Alpine community repository in Dockerfile --- diff --git a/Dockerfile b/Dockerfile index aa50e27ec..c210cf79c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ LABEL maintainer="ops@pleroma.social" \ ARG HOME=/opt/pleroma ARG DATA=/var/lib/pleroma -RUN echo "http://nl.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories &&\ +RUN echo "https://nl.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories &&\ apk update &&\ apk add exiftool imagemagick ncurses postgresql-client &&\ adduser --system --shell /bin/false --home ${HOME} pleroma &&\