From f23fbf3a3d356b0a1f70109c5f0af32639956113 Mon Sep 17 00:00:00 2001 From: Benjamin Nussbaum Date: Fri, 20 Feb 2026 12:18:28 +0100 Subject: [PATCH] chore(#179): move chinese fonts into base image * see: https://github.com/bnussbau/php-docker/commit/3d68bab9a95f4a19f9aca1134fd139619f162200 --- Dockerfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index c198c9c..5af7b33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,17 +30,6 @@ COPY --chown=www-data:www-data .env.example .env # Install the composer dependencies RUN composer install --no-dev --no-interaction --prefer-dist --optimize-autoloader -# add extra fonts -RUN apk add --no-cache \ - fontconfig \ - font-noto \ - font-noto-cjk-extra \ - font-noto-emoji \ - font-twemoji \ - && find /usr/share/fonts -name '*CJK*' ! -name '*Regular*' -delete \ - && fc-cache -f \ - && rm -rf /var/cache/fontconfig /var/cache/apk - ######################## # Assets Image ########################