From e516cc4aeb7447b15d837067df31e93fe8fb153b Mon Sep 17 00:00:00 2001 From: Ruslan Date: Fri, 8 May 2026 12:54:16 +0000 Subject: [PATCH] feat: Russian locale (ru_RU.UTF-8) in universal-runtime for Chromium UI language --- universal-runtime/Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/universal-runtime/Dockerfile b/universal-runtime/Dockerfile index 89087d2..6ccd6be 100644 --- a/universal-runtime/Dockerfile +++ b/universal-runtime/Dockerfile @@ -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