Matthias Nott
2026-02-21 ed26def7d76ac011075c11e8c1679ed1f7a08abc
Dockerfile
....@@ -21,9 +21,9 @@
2121 COPY app/ ./app/
2222 COPY static/ ./static/
2323
24
-
25
-# Ensure locale support for π in paths
26
-RUN apt-get update && apt-get install -y --no-install-recommends locales && \
24
+# Locale support for paths with special chars + libexpat for host venv compatibility
25
+RUN apt-get update && \
26
+ apt-get install -y --no-install-recommends locales libexpat1 && \
2727 echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen && \
2828 rm -rf /var/lib/apt/lists/*
2929 ENV LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8