diff --git a/docker-images/python3.9-alpine.dockerfile b/docker-images/python3.9-alpine.dockerfile index 4d8c68b2..b69167d8 100644 --- a/docker-images/python3.9-alpine.dockerfile +++ b/docker-images/python3.9-alpine.dockerfile @@ -3,7 +3,7 @@ FROM python:3.9-alpine 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.9-alpine3.12.dockerfile b/docker-images/python3.9-alpine3.12.dockerfile index 1e7cf51a..d2c3c104 100644 --- a/docker-images/python3.9-alpine3.12.dockerfile +++ b/docker-images/python3.9-alpine3.12.dockerfile @@ -3,7 +3,7 @@ FROM python:3.9-alpine3.12 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.9-slim.dockerfile b/docker-images/python3.9-slim.dockerfile index 3b836927..4e159daa 100644 --- a/docker-images/python3.9-slim.dockerfile +++ b/docker-images/python3.9-slim.dockerfile @@ -2,7 +2,7 @@ FROM python:3.9-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.9.dockerfile b/docker-images/python3.9.dockerfile index bff3d1b4..df885a35 100644 --- a/docker-images/python3.9.dockerfile +++ b/docker-images/python3.9.dockerfile @@ -2,7 +2,7 @@ FROM python:3.9 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