From a579612c9a594cbe8c459f4d988b92c1fafdfe14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=91=D0=BE=D0=B1?= =?UTF-8?q?=D1=8B=D1=80=D0=B5=D0=B2?= Date: Thu, 14 May 2026 20:44:20 +0300 Subject: [PATCH] fix(docker): COPY multi-source dest must end with slash Co-authored-by: Cursor --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7395347..d679621 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN set -eux; \ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY app.py kaskad_store.py system_info.py . +COPY app.py kaskad_store.py system_info.py /app/ COPY templates ./templates COPY static ./static