From 783f80455626344c6807cc54d5966dfab56d1940 Mon Sep 17 00:00:00 2001 From: Adrien le Maire Date: Wed, 10 Feb 2021 15:14:51 +0000 Subject: [PATCH] Update Dockerfile --- roundcubemail/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/roundcubemail/Dockerfile b/roundcubemail/Dockerfile index 5b54263..b3a6109 100644 --- a/roundcubemail/Dockerfile +++ b/roundcubemail/Dockerfile @@ -58,6 +58,7 @@ ENV ROUNDCUBEMAIL_VERSION $VERSION # Download package and extract to web volume RUN set -ex; \ + chmod +x /docker-entrypoint.sh; \ curl -o roundcubemail.tar.gz -fSL https://github.com/roundcube/roundcubemail/releases/download/${ROUNDCUBEMAIL_VERSION}/roundcubemail-${ROUNDCUBEMAIL_VERSION}-complete.tar.gz; \ curl -o roundcubemail.tar.gz.asc -fSL https://github.com/roundcube/roundcubemail/releases/download/${ROUNDCUBEMAIL_VERSION}/roundcubemail-${ROUNDCUBEMAIL_VERSION}-complete.tar.gz.asc; \ export GNUPGHOME="$(mktemp -d)"; \