copy all static files

This commit is contained in:
elpatron68
2024-05-26 14:00:31 +02:00
parent b6d6b62223
commit 222a8f019e

View File

@@ -14,7 +14,7 @@ WORKDIR /app
# copy every content from the local file to the image # copy every content from the local file to the image
COPY ./app.py /app COPY ./app.py /app
COPY ./templates/index.html /app/templates/index.html 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 ./app.ini /app
COPY ./wsgi.py /app COPY ./wsgi.py /app