build: use en_US as locale

This commit is contained in:
Jovan Krunić
2021-02-08 17:56:04 +01:00
parent 5790bec724
commit 0641ab12c8

View File

@@ -54,11 +54,11 @@ RUN apt-get update && \
gpg-agent
### Setup the locale
RUN sed -i 's/# de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen de_DE.UTF-8
ENV LANG=de_DE.UTF-8 \
LANGUAGE=de_DE \
LC_ALL=de_DE.UTF-8
RUN sed -i 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen en_US.UTF-8
ENV LANG=en_US.UTF-8 \
LANGUAGE=en_US \
LC_ALL=en_US.UTF-8
RUN dpkg-reconfigure --frontend noninteractive locales
### add chrome repository