1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:23:12 +00:00

chore: Update Dockerfile environment variables

The Dockerfile was updated to set the environment variables `LANG` and `LC_ALL` to `en_US.UTF-8`. This change ensures consistent encoding settings for the container.
This commit is contained in:
wlinator 2024-07-20 07:44:11 -04:00
parent e0206a7b89
commit d4d9a33d6a

View file

@ -18,7 +18,7 @@ RUN pip install --no-cache-dir poetry && \
COPY . .
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
CMD [ "poetry", "run", "python", "./Luminara.py" ]