I want to do some simple logging for my server which is a small Flask app running in a Docker container.
Here is the Dockerfile
# Dockerfile FROM dre
I personally use :
ENTRYPOINT ["python3"] CMD ["-u", "-m", "swagger_server"]
The "-u" is the key :)