I want to deploy a web app as a docker container. Currently I need to set up nginx, gunicorn and flask to realize this. There are many guides around to do it in docker but always divide it in two docker containers:
- flask, gunicorn
- nginx
Is it possible and a good idea to use all three components in just a single docker container?