Stop setting locales in Dockerfile

Change-Id: I50e3752c2f05fd56b8e05a6b49a326d4a9f2a059
This commit is contained in:
Federico Ressi 2022-01-03 14:31:55 +01:00
parent 0fa998a7a1
commit 5667949dc9
1 changed files with 0 additions and 8 deletions

View File

@ -5,14 +5,6 @@ ENV WHEEL_DIR=/wheel
RUN apt update
# Set the locale
RUN apt install -y locales
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
FROM base as source