From 27a68292428d94cac1f6e7a6f165a9a1caee6c64 Mon Sep 17 00:00:00 2001 From: agentbox Date: Sat, 1 Aug 2026 06:04:44 +0000 Subject: [PATCH] Fix Dockerfile: add missing i18n.py to COPY --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6efbb1c..75da390 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application -COPY app.py models.py auth.py meals.py ./ +COPY app.py models.py auth.py meals.py i18n.py ./ COPY templates/ templates/ COPY static/ static/