Fix Dockerfile template copy rules and uwsgi app.ini logging output

This commit is contained in:
2026-02-24 16:54:04 +01:00
parent 1d2d8230f1
commit 7ffad354fa
2 changed files with 4 additions and 3 deletions

View File

@@ -13,7 +13,8 @@ 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 ./templates/ /app/templates/
RUN mkdir -p /app/log
COPY ./static/ /app/static/
RUN ls -la /app/static/*
COPY ./app.ini /app

View File

@@ -1,6 +1,6 @@
[uwsgi]
wsgi-file = wsgi.py
master = 5
master = true
processes = 4
http = :90
die-on-term = true
logto = /app/log/marmelade.log