From f9beb2eb4e98052ecdb22f4d65be3c1197d51b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 25 Nov 2022 17:39:44 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20Uvicorn=20ve?= =?UTF-8?q?rsion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-images/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-images/requirements.txt b/docker-images/requirements.txt index 00774f97..f06e0f56 100644 --- a/docker-images/requirements.txt +++ b/docker-images/requirements.txt @@ -1,2 +1,2 @@ -uvicorn[standard]==0.16.0 +uvicorn[standard]==0.20.0 gunicorn==20.1.0 From 619d655b41dc9c342e5fc999b9b8a1012e5670e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 25 Nov 2022 17:39:58 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20pip=20versio?= =?UTF-8?q?n=20inside=20of=20Alpine,=20because=20Alpine=20=F0=9F=A4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-images/python3.7-alpine3.8.dockerfile | 1 + docker-images/python3.8-alpine3.10.dockerfile | 1 + docker-images/python3.9-alpine3.14.dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/docker-images/python3.7-alpine3.8.dockerfile b/docker-images/python3.7-alpine3.8.dockerfile index ea9cc59e..3f9acb99 100644 --- a/docker-images/python3.7-alpine3.8.dockerfile +++ b/docker-images/python3.7-alpine3.8.dockerfile @@ -4,6 +4,7 @@ LABEL maintainer="Sebastian Ramirez " COPY requirements.txt /tmp/requirements.txt RUN apk add --no-cache --virtual .build-deps gcc libc-dev make \ + && pip install --upgrade pip \ && pip install --no-cache-dir -r /tmp/requirements.txt \ && apk del .build-deps gcc libc-dev make diff --git a/docker-images/python3.8-alpine3.10.dockerfile b/docker-images/python3.8-alpine3.10.dockerfile index 543e4af9..bf4784a0 100644 --- a/docker-images/python3.8-alpine3.10.dockerfile +++ b/docker-images/python3.8-alpine3.10.dockerfile @@ -4,6 +4,7 @@ LABEL maintainer="Sebastian Ramirez " COPY requirements.txt /tmp/requirements.txt RUN apk add --no-cache --virtual .build-deps gcc libc-dev make \ + && pip install --upgrade pip \ && pip install --no-cache-dir -r /tmp/requirements.txt \ && apk del .build-deps gcc libc-dev make diff --git a/docker-images/python3.9-alpine3.14.dockerfile b/docker-images/python3.9-alpine3.14.dockerfile index 7b54d3f3..f489e1ff 100644 --- a/docker-images/python3.9-alpine3.14.dockerfile +++ b/docker-images/python3.9-alpine3.14.dockerfile @@ -4,6 +4,7 @@ LABEL maintainer="Sebastian Ramirez " COPY requirements.txt /tmp/requirements.txt RUN apk add --no-cache --virtual .build-deps gcc libc-dev make \ + && pip install --upgrade pip \ && pip install --no-cache-dir -r /tmp/requirements.txt \ && apk del .build-deps gcc libc-dev make