2
2
3
3
## Supported tags and respective ` Dockerfile ` links
4
4
5
- * [ ` python3.8 ` , ` latest ` _ (Dockerfile)_ ] ( https://github.com/tiangolo/uwsgi-nginx-flask-docker/blob/master/docker-images/python3.8.dockerfile )
5
+ * [ ` python3.9 ` , ` latest ` _ (Dockerfile)_ ] ( https://github.com/tiangolo/uwsgi-nginx-flask-docker/blob/master/docker-images/python3.9.dockerfile )
6
+ * [ ` python3.8 ` , _ (Dockerfile)_ ] ( https://github.com/tiangolo/uwsgi-nginx-flask-docker/blob/master/docker-images/python3.8.dockerfile )
6
7
* [ ` python3.8-alpine ` _ (Dockerfile)_ ] ( https://github.com/tiangolo/uwsgi-nginx-flask-docker/blob/master/docker-images/python3.8-alpine.dockerfile )
7
8
* [ ` python3.7 ` , _ (Dockerfile)_ ] ( https://github.com/tiangolo/uwsgi-nginx-flask-docker/blob/master/docker-images/python3.7.dockerfile )
8
9
* [ ` python3.6 ` _ (Dockerfile)_ ] ( https://github.com/tiangolo/uwsgi-nginx-flask-docker/blob/master/docker-images/python3.6.dockerfile )
@@ -68,7 +69,7 @@ It is very similar to **tiangolo/uwsgi-nginx-flask**, so you can still use many
68
69
You don't have to clone this repo, you should be able to use this image as a base image for your project with something in your ` Dockerfile ` like:
69
70
70
71
``` Dockerfile
71
- FROM tiangolo/uwsgi-nginx-flask:python3.8
72
+ FROM tiangolo/uwsgi-nginx-flask:python3.9
72
73
73
74
COPY ./app /app
74
75
```
@@ -93,7 +94,7 @@ Or you may follow the instructions to build your project from scratch:
93
94
* Create a ` Dockerfile ` with:
94
95
95
96
``` Dockerfile
96
- FROM tiangolo/uwsgi-nginx-flask:python3.8
97
+ FROM tiangolo/uwsgi-nginx-flask:python3.9
97
98
98
99
COPY ./app /app
99
100
```
@@ -406,7 +407,7 @@ Have in mind that `UWSGI_CHEAPER` must be lower than `UWSGI_PROCESSES`.
406
407
So, if, for example, you need to start with 4 processes and grow to a maximum of 64, your ` Dockerfile ` could look like:
407
408
408
409
``` Dockerfile
409
- FROM tiangolo/uwsgi-nginx-flask:python3.8
410
+ FROM tiangolo/uwsgi-nginx-flask:python3.9
410
411
411
412
ENV UWSGI_CHEAPER 4
412
413
ENV UWSGI_PROCESSES 64
@@ -433,7 +434,7 @@ To change this behavior, set the `LISTEN_PORT` environment variable. You might a
433
434
You can do that in your ` Dockerfile ` , it would look something like:
434
435
435
436
``` Dockerfile
436
- FROM tiangolo/uwsgi-nginx-flask:python3.8
437
+ FROM tiangolo/uwsgi-nginx-flask:python3.9
437
438
438
439
ENV LISTEN_PORT 8080
439
440
@@ -570,7 +571,7 @@ or you can set it to the keyword `auto` and it will try to auto-detect the numbe
570
571
For example, using ` auto ` , your Dockerfile could look like:
571
572
572
573
``` Dockerfile
573
- FROM tiangolo/uwsgi-nginx-flask:python3.8
574
+ FROM tiangolo/uwsgi-nginx-flask:python3.9
574
575
575
576
ENV NGINX_WORKER_PROCESSES auto
576
577
0 commit comments