Use C.UTF-8

We use C.UTF-8 on production, this change unifies usage of C.UTF-8 in
all images.

Changelog: changed
This commit is contained in:
Jan Provaznik 2021-11-16 08:19:23 +01:00
parent b6e40a81cd
commit 6b2d75fc44
15 changed files with 40 additions and 40 deletions

View file

@ -6,11 +6,11 @@ RUN apt-get update -q \
&& apt-get clean -yqq \
&& rm -rf /var/lib/apt/lists/*
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
RUN echo "C.UTF-8 UTF-8" > /etc/locale.gen
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANG C.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV LC_ALL C.UTF-8
ENV RUBY_VERSION 2.6.5
RUN curl -fsSL "https://cache.ruby-lang.org/pub/ruby/2.6/ruby-${RUBY_VERSION}.tar.gz" \