From a23997ecab80c75a7b2feade98c3ab17f7e9885c Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Fri, 7 Aug 2026 15:12:32 -0500 Subject: [PATCH] Run with `PYTHONUNBUFFERED` so we can always see log output --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index f395127da0..30c6b670b6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -203,6 +203,9 @@ EXPOSE 8008/tcp 8448/tcp # SYNAPSE_ENABLE_METRICS=1). EXPOSE 19090/tcp +# Python's `print()` buffers output by default, this tells Python to disable buffering. +ENV PYTHONUNBUFFERED=1 + ENTRYPOINT ["/start.py"] HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \