We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ba650 commit 91465e2Copy full SHA for 91465e2
1 file changed
Dockerfile
@@ -52,6 +52,10 @@ RUN chmod +x /app/search.py
52
53
# search.py finds the binary here by default.
54
ENV DEGLIB_BIN=/usr/local/bin/deglib_sisap
55
+# Unbuffered stdout so search.py's progress lines interleave in order with the
56
+# C++ binary's output in the TIRA logs (otherwise Python's block buffering flushes
57
+# them after the subprocess, making one run look like two).
58
+ENV PYTHONUNBUFFERED=1
59
60
# TIRA invokes the container as:
61
# python3 /app/search.py --input $inputDataset/*.h5 \
0 commit comments