feat: Russian locale (ru_RU.UTF-8) in universal-runtime for Chromium UI language

This commit is contained in:
2026-05-08 12:54:16 +00:00
parent 52cb1fd3d6
commit e516cc4aeb
+7 -1
View File
@@ -1,6 +1,9 @@
FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
ENV DEBIAN_FRONTEND=noninteractive \
LANG=ru_RU.UTF-8 \
LC_ALL=ru_RU.UTF-8 \
LANGUAGE=ru_RU:ru
RUN apt-get update && apt-get install -y --no-install-recommends \
tini \
@@ -17,6 +20,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
x11-utils \
fonts-dejavu-core \
python3-cryptography \
locales \
&& sed -i 's/# ru_RU.UTF-8/ru_RU.UTF-8/' /etc/locale.gen \
&& locale-gen \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh