We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68c49ce commit 7a64021Copy full SHA for 7a64021
1 file changed
Dockerfile
@@ -2,7 +2,12 @@ FROM httpd:2.4.59
2
3
RUN apt-get update
4
RUN apt-get install -y libcgi-pm-perl libcapture-tiny-perl libdatetime-perl libcapture-tiny-perl libgeo-ip-perl
5
-RUN apt-get install -y libjson-xs-perl libintl-perl libxml-rss-perl libdatetime-format-strptime-perl make gettext
+RUN apt-get install -y libjson-xs-perl libintl-perl libxml-rss-perl libdatetime-format-strptime-perl make gettext locales
6
+
7
+# Generate locales for translations
8
+RUN echo "et_EE.UTF-8 UTF-8" >> /etc/locale.gen && \
9
+ echo "ru_RU.UTF-8 UTF-8" >> /etc/locale.gen && \
10
+ locale-gen
11
12
COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf-extra
13
RUN cat /usr/local/apache2/conf/httpd.conf-extra >> /usr/local/apache2/conf/httpd.conf
0 commit comments