File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,12 @@ FROM httpd:2.4.59
22
33RUN apt-get update
44RUN 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
5+ 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
611
712COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf-extra
813RUN cat /usr/local/apache2/conf/httpd.conf-extra >> /usr/local/apache2/conf/httpd.conf
You can’t perform that action at this time.
0 commit comments