From ed26def7d76ac011075c11e8c1679ed1f7a08abc Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sat, 21 Feb 2026 16:48:40 +0100
Subject: [PATCH] feat: Clickable stat tiles, view toggle, CPU/memory metrics, restore fix

---
 Dockerfile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 6f3d9aa..645cb9a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,9 +21,9 @@
 COPY app/ ./app/
 COPY static/ ./static/
 
-
-# Ensure locale support for π in paths
-RUN apt-get update && apt-get install -y --no-install-recommends locales && \
+# Locale support for paths with special chars + libexpat for host venv compatibility
+RUN apt-get update && \
+    apt-get install -y --no-install-recommends locales libexpat1 && \
     echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen && \
     rm -rf /var/lib/apt/lists/*
 ENV LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8

--
Gitblit v1.3.1