From 314bd15a5143e08a661b1885a6fa5531681be587 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Wed, 6 Aug 2025 21:55:19 +0300 Subject: [PATCH] add unicode locale generation to Dockerfile before the change, unicode characters were displayed in console as question marks --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5b02a84..097020c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,6 +83,12 @@ RUN mkdir -p ${DATA_PATH}/Chunky/tasks && \ ln -sf ${DATA_PATH}/Chunky/tasks \ ${CONFIG_PATH}/plugins/Chunky/tasks +# Generate unicode locale so that cyrillic characters display properly +RUN apt-get update -y && apt-get install -y locales && \ + echo en_US.UTF-8 UTF-8 > /etc/locale.gen && \ + dpkg-reconfigure --frontend=noninteractive locales +ENV LANG en_US.UTF-8 + VOLUME ${DATA_PATH}