From: Pablo Zmdl Date: Tue, 10 Jun 2025 12:58:30 +0000 (+0200) Subject: Fix letter case mismatch X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=0aca62896e816c0d48c43a4f5fda65f0e8c7c43b;p=roundcube-roundcubemail-docker.git Fix letter case mismatch Docker complains about it, which pollutes the logs. --- diff --git a/apache/Dockerfile b/apache/Dockerfile index 8b26484..e93d9b7 100644 --- a/apache/Dockerfile +++ b/apache/Dockerfile @@ -134,7 +134,7 @@ CMD ["apache2-foreground"] #### non-root stage -FROM root as nonroot +FROM root AS nonroot # Prepare locale config for locale-gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \ diff --git a/fpm-alpine/Dockerfile b/fpm-alpine/Dockerfile index 27ea745..22c75eb 100644 --- a/fpm-alpine/Dockerfile +++ b/fpm-alpine/Dockerfile @@ -122,6 +122,6 @@ CMD ["php-fpm"] #### non-root stage -FROM root as nonroot +FROM root AS nonroot USER 82:82 diff --git a/fpm/Dockerfile b/fpm/Dockerfile index 686cb1d..dbd0cc6 100644 --- a/fpm/Dockerfile +++ b/fpm/Dockerfile @@ -134,7 +134,7 @@ CMD ["php-fpm"] #### non-root stage -FROM root as nonroot +FROM root AS nonroot # Prepare locale config for locale-gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \ diff --git a/templates/Dockerfile-alpine.templ b/templates/Dockerfile-alpine.templ index 51fd809..a5f4212 100644 --- a/templates/Dockerfile-alpine.templ +++ b/templates/Dockerfile-alpine.templ @@ -122,6 +122,6 @@ CMD ["%%CMD%%"] #### non-root stage -FROM root as nonroot +FROM root AS nonroot USER 82:82 diff --git a/templates/Dockerfile-debian.templ b/templates/Dockerfile-debian.templ index f3a5885..416c297 100644 --- a/templates/Dockerfile-debian.templ +++ b/templates/Dockerfile-debian.templ @@ -134,7 +134,7 @@ CMD ["%%CMD%%"] #### non-root stage -FROM root as nonroot +FROM root AS nonroot # Prepare locale config for locale-gen RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen; \