Consider this issue.py
file:
import subprocess
print('Calling subprocess...')
subprocess.run(['python', '--version'])
print('Subprocess is done!')
Executing python issue.py
manually yields what I expect:
Calling subprocess...
Python 3.9.0
Subprocess is done!
However, if I execute this inside a Docker container, something weird happens:
$ docker run --rm -v $(pwd):/issue python:3.9.0 python /issue/issue.py
Python 3.9.0
Calling subprocess...
Subprocess is done!
How can I fix this, to make Docker respect the correct output order?
Notes:
- This problem also happens with
stderr
, although the above MCVE does not show it. - The MCVE uses the
python
image directly but in my real use case I have a custom image from a custom Dockerfile which usesFROM python
. - Using
capture_output=True
in thesubprocess.run
call and then printing the captured output is not an option for me because my real use case invokes a subprocess that prints information over time tostdout
(unlikepython --version
) and I cannot wait for it to complete to print the entire output only after that.