Compare commits

...

2 Commits

Author SHA1 Message Date
807e859fd8 Merge pull request 'feature-42-fix-unicode' (#2) from feature-42 into develop
All checks were successful
/ build-docker (push) Successful in 8m35s
Reviewed-on: #2
2025-08-06 18:57:26 +00:00
84c1134853
add unicode locale generation to Dockerfile
before the change, unicode characters were displayed in console as question marks
2025-08-06 21:54:58 +03:00

View File

@ -12,6 +12,13 @@ RUN mkdir ${DATA_PATH}
RUN mkdir ${DATA_PATH}/logs && \
ln -sf ${DATA_PATH}/logs ${CONFIG_PATH}
# 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}