From 6e60dc7199df6ef8cda672c30cf2b6a680372adc Mon Sep 17 00:00:00 2001 From: Slawek Koszewski Date: Tue, 19 Aug 2025 05:23:14 +0000 Subject: [PATCH] Fixed incorrect COPY instruction that did not copy the directory contents. --- app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Dockerfile b/app/Dockerfile index 188beee..8ed8a77 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -7,7 +7,7 @@ COPY requirements.txt . RUN pip install --root-user-action=ignore --no-cache-dir -r requirements.txt COPY image-chooser.py . -COPY templates . +COPY templates/ templates/ COPY templates.json . COPY ./entrypoint.sh /