From ab40d2c37aec588510cc04760431b78b7d218a14 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 1 May 2024 14:11:16 +0100 Subject: [PATCH] remove pip from final container --- application/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/*