From a054dd4276bc5530ddaf1b1703927fe8fe7e1cbc Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Sat, 15 Feb 2025 01:46:36 -0800 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6f4f825..dcf4e4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,12 +7,12 @@ ENV DEBIAN_FRONTEND=noninteractive # Update the package list and install Python and pip RUN apt-get update && apt-get install -y --no-install-recommends \ - python3.11 \ - python3-pip \ - python3.11-dev \ - && apt-get clean \ + python3.11 python3-pip \ && rm -rf /var/lib/apt/lists/* +# Upgrade pip to the latest version +RUN pip3 install -U pip + # Set a working directory WORKDIR /app