Merge branch 'locales' into 'master'

Add locales packages and set to en_US.UTF-8



See merge request !3
This commit is contained in:
Kamil Trzciński 2016-09-07 15:37:24 +00:00
commit d357ba3e55
5 changed files with 43 additions and 9 deletions

View file

@ -1,7 +1,14 @@
FROM ruby:2.3
ENV PACKAGES="git-core nodejs pandoc texlive-latex-recommended texlive-xetex texlive-fonts-recommended ed" \
LC_ALL=en_US.UTF-8
ENV PACKAGES="git-core nodejs pandoc texlive-latex-recommended texlive-xetex texlive-fonts-recommended ed"
ADD / /
RUN /scripts/install-essentials
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
# Must be set after install-essentials is run
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN rm -rf /var/lib/apt/lists/*