From 584bd4fb9e28d47a04ce04d37e4e59d751dab545 Mon Sep 17 00:00:00 2001 From: Jeroen Geusebroek Date: Sat, 31 Jul 2021 11:48:54 +0200 Subject: [PATCH] Per request add NL locale. --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 413e2b0..4918d3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,15 @@ LABEL Author="Jeroen Geusebroek " ENV DEBIAN_FRONTEND="noninteractive" \ TERM="xterm" \ - APTLIST="apache2 php7.4 php7.4-curl php7.4-gd php7.4-gmp php7.4-mysql php7.4-pgsql php7.4-xml php7.4-xmlrpc php7.4-mbstring php7.4-zip git-core cron wget jq" \ - REFRESHED_AT='2020-08-15' + APTLIST="apache2 php7.4 php7.4-curl php7.4-gd php7.4-gmp php7.4-mysql php7.4-pgsql php7.4-xml php7.4-xmlrpc php7.4-mbstring php7.4-zip git-core cron wget jq locales" \ + REFRESHED_AT='2021-07-31' RUN echo "force-unsafe-io" > /etc/dpkg/dpkg.cfg.d/02apt-speedup &&\ echo "Acquire::http {No-Cache=True;};" > /etc/apt/apt.conf.d/no-cache && \ apt-get -q update && \ apt-get -qy dist-upgrade && \ apt-get install -qy $APTLIST && \ + locale-gen --no-purge nl_NL.UTF-8 en_US.UTF-8 && \ \ # Cleanup apt-get -y autoremove && \