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 5868314 commit 3006d99Copy full SHA for 3006d99
docker/php/Dockerfile
@@ -10,11 +10,14 @@ RUN apt-get update && apt-get install -y \
10
libicu-dev \
11
zip \
12
locales \
13
+ locales-all \
14
&& docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp \
15
&& docker-php-ext-install -j$(nproc) gd pdo pdo_mysql zip mysqli intl
16
RUN a2enmod rewrite
17
-# Locales
18
-RUN locale-gen C.UTF-8
19
-ENV LANG C.UTF-8
+# Locale
20
ENV LC_ALL C.UTF-8
+ENV LANG C.UTF-8
21
+
22
+# Restart apache
23
+RUN service apache2 restart
0 commit comments