From 5509ed07bbc1bdc6356d3290526e9e8811afa07e Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Sun, 8 May 2016 22:00:44 +0200 Subject: [PATCH] rainloop: update dockerfile --- rainloop/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rainloop/Dockerfile b/rainloop/Dockerfile index cf051ec..17905be 100644 --- a/rainloop/Dockerfile +++ b/rainloop/Dockerfile @@ -8,7 +8,10 @@ ENV GID=991 UID=991 RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \ && echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ && apk -U add \ + gnupg \ nginx \ + supervisor \ + tini@commuedge \ php7-fpm@testing \ php7-curl@testing \ php7-iconv@testing \ @@ -20,15 +23,12 @@ RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/ap php7-pdo_mysql@testing \ php7-pdo_sqlite@testing \ php7-sqlite3@testing \ - supervisor \ - gnupg \ - tini@commuedge \ && cd /tmp \ && wget -q http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip \ && wget -q http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip.asc \ && wget -q http://repository.rainloop.net/RainLoop.asc \ - && gpg --import RainLoop.asc \ && echo "Verifying authenticity of rainloop-community-latest.zip using GPG..." \ + && gpg --import RainLoop.asc \ && FINGERPRINT="$(LANG=C gpg --verify rainloop-community-latest.zip.asc rainloop-community-latest.zip 2>&1 \ | sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \ && if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \