Merge pull request 'feature-42-fix-unicode' (#37) from feature-42 into develop
All checks were successful
/ build-docker (push) Successful in 12m55s

Reviewed-on: #37
This commit is contained in:
cuqmbr 2025-08-06 18:57:29 +00:00
commit 78f3df715b

View File

@ -83,6 +83,12 @@ RUN mkdir -p ${DATA_PATH}/Chunky/tasks && \
ln -sf ${DATA_PATH}/Chunky/tasks \ ln -sf ${DATA_PATH}/Chunky/tasks \
${CONFIG_PATH}/plugins/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} VOLUME ${DATA_PATH}