diff --git a/application/Dockerfile b/application/Dockerfile index 305bca4..9f84c40 100644 --- a/application/Dockerfile +++ b/application/Dockerfile @@ -34,7 +34,7 @@ RUN pip install --no-cache-dir --upgrade pip && \ FROM ubuntu:mantic as final # Install Python -RUN apt-get update && apt-get install -y --no-install-recommends python3.11 python3-pip && \ +RUN apt-get update && apt-get install -y --no-install-recommends python3.11 gunicorn && \ ln -s /usr/bin/python3.11 /usr/bin/python && \ rm -rf /var/lib/apt/lists/*