test lang

This commit is contained in:
Kseninia Mikhaylova 2024-11-19 12:14:05 +03:00
parent c47ba87151
commit 3b1bfe3b55
1 changed files with 6 additions and 4 deletions

View File

@ -6,10 +6,12 @@ WORKDIR ${WORKING_DIR}
RUN apt-get update RUN apt-get update
RUN apt-get install python3-pip -y RUN apt-get install python3-pip -y
RUN apt-get install python3-poetry -y RUN apt-get install python3-poetry -y
RUN apt-get install -y locales && apt-get install language-pack-ru -y && \ RUN apt-get update && \
dpkg-reconfigure --frontend=noninteractive locales && \ apt-get install -y locales && \
update-locale LANG=ru_RU.UTF-8 echo "ru_RU.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen && \
update-locale LANG=ru_RU.UTF-8
RUN poetry -vvv --version RUN poetry -vvv --version
COPY pyproject.toml poetry.lock ./ COPY pyproject.toml poetry.lock ./