Add unbuffered Python env to Dockerfile

This commit is contained in:
Jack Hadrill
2024-11-12 23:39:37 +00:00
parent 0398f2ed3d
commit 8c8045011b

View File

@@ -8,4 +8,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY app.py . COPY app.py .
ENV PYTHONUNBUFFERED=1
CMD ["python", "app.py"] CMD ["python", "app.py"]