From 8e41bf21f6c2294dc912e9f50a967c09f90f798b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastjan=20Arti=C4=8D?= Date: Tue, 28 Apr 2026 15:34:50 +0000 Subject: [PATCH] Fix: create empty static/ in container instead of COPY (was empty in git) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8434c1d..72902d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN pip install --no-cache-dir -r requirements.txt COPY app/ ./app/ COPY scripts/ ./scripts/ COPY templates/ ./templates/ -COPY static/ ./static/ +RUN mkdir -p ./static # Data volume RUN mkdir -p /data/uploads /data/outputs /data/jobs