release-1.0.0 #39

Merged
cuqmbr merged 108 commits from develop into main 2025-08-14 15:04:35 +00:00
Showing only changes of commit cb3c1fef96 - Show all commits

View File

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