refactor: 🎨 improved logging to console
CI / Build and Push (push) Successful in 4s

This commit is contained in:
2026-01-31 15:34:58 +00:00
parent f9b3fb3dec
commit b7e9f9a02d
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -3,4 +3,4 @@ WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "warning"]
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "info", "--capture-output", "--enable-stdio-inheritance"]