From 6fa2957347b2306a8898d4614700cd4d1ad0274f Mon Sep 17 00:00:00 2001 From: James Edington Date: Mon, 14 Mar 2022 09:39:04 -0500 Subject: [PATCH] Fix apk ERROR: UNTRUSTED signature fetch http://nl.alpinelinux.org/alpine/latest-stable/community/x86_64/APKINDEX.tar.gz ERROR: http://nl.alpinelinux.org/alpine/latest-stable/community: UNTRUSTED signature WARNING: Ignoring http://nl.alpinelinux.org/alpine/latest-stable/community: No such file or directory --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 42feef173..e64913011 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ ARG HOME=/opt/pleroma ARG DATA=/var/lib/pleroma RUN echo "http://nl.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories &&\ - apk update &&\ + apk update --allow-untrusted &&\ apk add exiftool ffmpeg imagemagick libmagic ncurses postgresql-client &&\ adduser --system --shell /bin/false -u $UID -g $GID --home ${HOME} pleroma &&\ mkdir -p ${DATA}/uploads &&\