From 7ffad354fa3c942050abd0ef384312d88ce28c70 Mon Sep 17 00:00:00 2001 From: elpatron Date: Tue, 24 Feb 2026 16:54:04 +0100 Subject: [PATCH] Fix Dockerfile template copy rules and uwsgi app.ini logging output --- Dockerfile | 3 ++- app.ini | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e81c737..64bd607 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/app.ini b/app.ini index afb6e98..15c3f62 100644 --- a/app.ini +++ b/app.ini @@ -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