locale
This commit is contained in:
parent
3b1bfe3b55
commit
9fab6b3c94
|
@ -6,12 +6,16 @@ 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 update && \
|
|
||||||
apt-get install -y locales && \
|
RUN apt-get install -y locales && \
|
||||||
echo "ru_RU.UTF-8 UTF-8" >> /etc/locale.gen && \
|
echo "ru_RU.UTF-8 UTF-8" >> /etc/locale.gen && \
|
||||||
locale-gen && \
|
locale-gen && \
|
||||||
update-locale LANG=ru_RU.UTF-8
|
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
|
RUN poetry -vvv --version
|
||||||
|
|
||||||
COPY pyproject.toml poetry.lock ./
|
COPY pyproject.toml poetry.lock ./
|
||||||
|
|
Loading…
Reference in New Issue