build(docker/fradrive): do not install locales manually [skip ci]

This commit is contained in:
Sarah Vaupel 2025-02-05 11:04:15 +01:00
parent d89e9f6781
commit a92fd673ab

View File

@ -4,7 +4,7 @@ ARG FROM_TAG=12.5
FROM ${FROM_IMG}:${FROM_TAG}
# Setup locales
RUN apt-get update && apt-get -y install locales locales-all
# RUN apt-get update && apt-get -y install locales locales-all
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8