From 9df1da4c86641879307d68dbc900d8c363e4c2ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 19 Dec 2020 12:09:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Install=20uvicorn[standard?= =?UTF-8?q?]=20to=20include=20uvloop=20and=20Gunicorn=20support=20(#54)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-images/python3.6-alpine3.8.dockerfile | 2 +- docker-images/python3.6.dockerfile | 2 +- docker-images/python3.7-alpine3.8.dockerfile | 2 +- docker-images/python3.7.dockerfile | 2 +- docker-images/python3.8-alpine3.10.dockerfile | 2 +- docker-images/python3.8-slim.dockerfile | 2 +- docker-images/python3.8.dockerfile | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docker-images/python3.6-alpine3.8.dockerfile b/docker-images/python3.6-alpine3.8.dockerfile index aaf4d983..b4eaaafe 100644 --- a/docker-images/python3.6-alpine3.8.dockerfile +++ b/docker-images/python3.6-alpine3.8.dockerfile @@ -3,7 +3,7 @@ FROM python:3.6-alpine3.8 LABEL maintainer="Sebastian Ramirez " RUN apk add --no-cache --virtual .build-deps gcc libc-dev make \ - && pip install --no-cache-dir uvicorn gunicorn \ + && pip install --no-cache-dir "uvicorn[standard]" gunicorn \ && apk del .build-deps gcc libc-dev make COPY ./start.sh /start.sh diff --git a/docker-images/python3.6.dockerfile b/docker-images/python3.6.dockerfile index 8c5ad007..e8290727 100644 --- a/docker-images/python3.6.dockerfile +++ b/docker-images/python3.6.dockerfile @@ -2,7 +2,7 @@ FROM python:3.6 LABEL maintainer="Sebastian Ramirez " -RUN pip install --no-cache-dir uvicorn gunicorn +RUN pip install --no-cache-dir "uvicorn[standard]" gunicorn COPY ./start.sh /start.sh RUN chmod +x /start.sh diff --git a/docker-images/python3.7-alpine3.8.dockerfile b/docker-images/python3.7-alpine3.8.dockerfile index a00c7989..3831224f 100644 --- a/docker-images/python3.7-alpine3.8.dockerfile +++ b/docker-images/python3.7-alpine3.8.dockerfile @@ -3,7 +3,7 @@ FROM python:3.7-alpine3.8 LABEL maintainer="Sebastian Ramirez " RUN apk add --no-cache --virtual .build-deps gcc libc-dev make \ - && pip install --no-cache-dir uvicorn gunicorn \ + && pip install --no-cache-dir "uvicorn[standard]" gunicorn \ && apk del .build-deps gcc libc-dev make COPY ./start.sh /start.sh diff --git a/docker-images/python3.7.dockerfile b/docker-images/python3.7.dockerfile index 381d0121..29b48605 100644 --- a/docker-images/python3.7.dockerfile +++ b/docker-images/python3.7.dockerfile @@ -2,7 +2,7 @@ FROM python:3.7 LABEL maintainer="Sebastian Ramirez " -RUN pip install --no-cache-dir uvicorn gunicorn +RUN pip install --no-cache-dir "uvicorn[standard]" gunicorn COPY ./start.sh /start.sh RUN chmod +x /start.sh diff --git a/docker-images/python3.8-alpine3.10.dockerfile b/docker-images/python3.8-alpine3.10.dockerfile index edd0e295..504ad78c 100644 --- a/docker-images/python3.8-alpine3.10.dockerfile +++ b/docker-images/python3.8-alpine3.10.dockerfile @@ -3,7 +3,7 @@ FROM python:3.8-alpine3.10 LABEL maintainer="Sebastian Ramirez " RUN apk add --no-cache --virtual .build-deps gcc libc-dev make \ - && pip install --no-cache-dir uvicorn gunicorn \ + && pip install --no-cache-dir "uvicorn[standard]" gunicorn \ && apk del .build-deps gcc libc-dev make COPY ./start.sh /start.sh diff --git a/docker-images/python3.8-slim.dockerfile b/docker-images/python3.8-slim.dockerfile index 21b1b606..f0074391 100644 --- a/docker-images/python3.8-slim.dockerfile +++ b/docker-images/python3.8-slim.dockerfile @@ -2,7 +2,7 @@ FROM python:3.8-slim LABEL maintainer="Sebastian Ramirez " -RUN pip install --no-cache-dir uvicorn gunicorn +RUN pip install --no-cache-dir "uvicorn[standard]" gunicorn COPY ./start.sh /start.sh RUN chmod +x /start.sh diff --git a/docker-images/python3.8.dockerfile b/docker-images/python3.8.dockerfile index ee3b7d77..19f3d8d1 100644 --- a/docker-images/python3.8.dockerfile +++ b/docker-images/python3.8.dockerfile @@ -2,7 +2,7 @@ FROM python:3.8 LABEL maintainer="Sebastian Ramirez " -RUN pip install --no-cache-dir uvicorn gunicorn +RUN pip install --no-cache-dir "uvicorn[standard]" gunicorn COPY ./start.sh /start.sh RUN chmod +x /start.sh