From 222a8f019e26d1a4303983806c7fee2a952d6c11 Mon Sep 17 00:00:00 2001 From: elpatron68 Date: Sun, 26 May 2024 14:00:31 +0200 Subject: [PATCH] copy all static files --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c044bd3..67265c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /app # copy every content from the local file to the image COPY ./app.py /app COPY ./templates/index.html /app/templates/index.html -COPY ./static/favicon.ico /app/static/favicon.ico +COPY ./static/ /app/static/ COPY ./app.ini /app COPY ./wsgi.py /app