From 9fab6b3c94bff8352f3a19e81bed348c2ec3b315 Mon Sep 17 00:00:00 2001 From: Kseninia Mikhaylova Date: Tue, 19 Nov 2024 12:16:02 +0300 Subject: [PATCH] locale --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d4cbb0..a900bb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,16 @@ WORKDIR ${WORKING_DIR} RUN apt-get update RUN apt-get install python3-pip -y RUN apt-get install python3-poetry -y -RUN apt-get update && \ - apt-get install -y locales && \ + +RUN apt-get install -y locales && \ echo "ru_RU.UTF-8 UTF-8" >> /etc/locale.gen && \ locale-gen && \ update-locale LANG=ru_RU.UTF-8 - + +RUN apt-get install language-pack-ru -y && \ + dpkg-reconfigure --frontend=noninteractive locales && \ + update-locale LANG=ru_RU.UTF-8 + RUN poetry -vvv --version COPY pyproject.toml poetry.lock ./