Commit 0233730a authored by Romain Reuillon's avatar Romain Reuillon

Fix locale

parent 64e8e6e1
......@@ -25,8 +25,10 @@ RUN apt-get update \
## Configure default locale, see https://github.com/rocker-org/rocker/issues/19
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
&& locale-gen en_US.utf8 \
&& /usr/sbin/update-locale LANG=en_US.UTF-8
&& locale-gen en_US.utf8 \
&& /usr/sbin/update-locale LANG=en_US.UTF-8 \
&& ln -s /etc/locale.alias /usr/share/locale/locale.alias \
&& apt install locales
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
......
......@@ -26,7 +26,9 @@ RUN apt-get update \
## Configure default locale, see https://github.com/rocker-org/rocker/issues/19
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
&& locale-gen en_US.utf8 \
&& /usr/sbin/update-locale LANG=en_US.UTF-8
&& /usr/sbin/update-locale LANG=en_US.UTF-8 \
&& ln -s /etc/locale.alias /usr/share/locale/locale.alias \
&& apt install locales
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment