We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d823a commit 77ae9beCopy full SHA for 77ae9be
docker/php/Dockerfile
@@ -6,6 +6,11 @@ RUN apt-get update && apt-get install -y \
6
libpng-dev \
7
libzip-dev \
8
zip \
9
+ locales \
10
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
11
&& docker-php-ext-install -j$(nproc) gd pdo pdo_mysql zip mysqli
-RUN a2enmod rewrite
12
+RUN locale-gen C.UTF-8
13
+RUN a2enmod rewrite
14
+
15
+ENV LANG C.UTF-8
16
+ENV LC_ALL C.UTF-8
0 commit comments