From: Thomas Bruederli Date: Sun, 24 Apr 2022 20:57:22 +0000 (+0200) Subject: Add --chmod option to apache and fpm-alpine variants X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=23a3d1c1da6920306b107403a52e2bd08c267f69;p=roundcube-roundcubemail-docker.git Add --chmod option to apache and fpm-alpine variants --- diff --git a/apache/Dockerfile b/apache/Dockerfile index 37640e9..10e7f21 100644 --- a/apache/Dockerfile +++ b/apache/Dockerfile @@ -111,7 +111,7 @@ RUN curl -fL https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait # use custom PHP settings COPY php.ini /usr/local/etc/php/conf.d/roundcube-defaults.ini -COPY docker-entrypoint.sh / +COPY --chmod=0755 docker-entrypoint.sh / ENTRYPOINT ["/docker-entrypoint.sh"] CMD ["apache2-foreground"] diff --git a/fpm-alpine/Dockerfile b/fpm-alpine/Dockerfile index dcaf641..2213669 100644 --- a/fpm-alpine/Dockerfile +++ b/fpm-alpine/Dockerfile @@ -103,7 +103,7 @@ RUN curl -fL https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait # use custom PHP settings COPY php.ini /usr/local/etc/php/conf.d/roundcube-defaults.ini -COPY docker-entrypoint.sh / +COPY --chmod=0755 docker-entrypoint.sh / ENTRYPOINT ["/docker-entrypoint.sh"] CMD ["php-fpm"]