remove gunicorn from final

This commit is contained in:
Alex
2024-05-02 14:43:09 +01:00
parent ab40d2c37a
commit 7eaa32d85f

View File

@@ -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 gunicorn && \
RUN apt-get update && apt-get install -y --no-install-recommends python3.11 && \
ln -s /usr/bin/python3.11 /usr/bin/python && \
rm -rf /var/lib/apt/lists/*