From 7a552f02c3652715e2fb4a4a0d8961f365e938c8 Mon Sep 17 00:00:00 2001 From: Philip Rosenberg-Watt Date: Tue, 4 Feb 2020 13:35:00 -0700 Subject: [PATCH] Add gpg to Roundcube The web UI was complaining that it couldn't find the GPG binary. Turns out it wasn't installed. --- webmails/roundcube/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/webmails/roundcube/Dockerfile b/webmails/roundcube/Dockerfile index d04a03b3..c0458015 100644 --- a/webmails/roundcube/Dockerfile +++ b/webmails/roundcube/Dockerfile @@ -21,6 +21,7 @@ ENV ROUNDCUBE_URL https://github.com/roundcube/roundcubemail/releases/download/1 RUN apt-get update && apt-get install -y \ zlib1g-dev libzip4 libzip-dev \ python3-jinja2 \ + gpg \ && docker-php-ext-install zip \ && echo date.timezone=UTC > /usr/local/etc/php/conf.d/timezone.ini \ && rm -rf /var/www/html/ \