notes/computery_stuff/python.md

390 B
Executable File

author date title tags uuid
Alvie Rahman \today Python
docker
python
programming
io
cd5c50f9-66f4-4a3b-b89a-04a20ecd642b

Issues

No log output when running in docker

Change line beginning with CMD from:

CMD [ "python", "app.py" ]

to:

CMD [ "python", "-u", "app.py" ]

This disabled output buffering (stdout and stderr).