From a92fd673ab21c39439a16faa4993f687ceffdaad Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Wed, 5 Feb 2025 11:04:15 +0100 Subject: [PATCH] build(docker/fradrive): do not install locales manually [skip ci] --- docker/fradrive/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/fradrive/Dockerfile b/docker/fradrive/Dockerfile index 6ebf8e71b..aa82887bc 100755 --- a/docker/fradrive/Dockerfile +++ b/docker/fradrive/Dockerfile @@ -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