less big rename

This commit is contained in:
2021-12-23 15:41:57 +00:00
parent 51a5b12813
commit e8c154d43b
10 changed files with 0 additions and 0 deletions

25
computery_stuff/python.md Executable file
View File

@@ -0,0 +1,25 @@
---
author: Alvie Rahman
date: \today
title: Python
tags: [ docker, python, programming, io ]
---
# Issues
## No log output when running in docker
Change line beginning with `CMD` from:
```Dockerfile
CMD [ "python", "app.py" ]
```
to:
```Dockerfile
CMD [ "python", "-u", "app.py" ]
```
This disabled output buffering (stdout and stderr).