Use C.UTF-8

This commit is contained in:
Jan Provaznik 2021-12-13 10:31:08 +00:00 committed by Rémy Coutable
parent dbf11edefc
commit 8bd9fd997e
17 changed files with 60 additions and 64 deletions

View file

@ -6,9 +6,9 @@ RUN yum update -y -q \
gcc gcc-c++ git make curl zlib-devel openssl-devel glibc-locale-source \
&& yum clean all
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
RUN localedef -c -f UTF-8 -i C 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" \