ci: Properly setup en_US.UTF-8 locale for Ubuntu containers

This commit is contained in:
Tomas Babej 2020-12-06 00:22:32 -05:00
parent 2620714b43
commit 1b745bc505
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5
2 changed files with 4 additions and 4 deletions

View file

@ -1,10 +1,10 @@
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev faketime
RUN apt-get install -y python3
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev faketime locales python3
# Setup language environment
RUN locale-gen en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8

View file

@ -1,10 +1,10 @@
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev faketime
RUN apt-get install -y python3
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev faketime locales python3
# Setup language environment
RUN locale-gen en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8