From 2301a3861f80c683410835650321751c163660ce Mon Sep 17 00:00:00 2001 From: Brett Anda Date: Thu, 25 Jul 2024 13:31:52 -0600 Subject: [PATCH] upgrade pip in docker file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 53a5bcec..34bd015b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /usr/src/app COPY ./requirements.txt . RUN --mount=type=cache,target=/root/.cache/pip \ - pip install -r requirements.txt + pip install --upgrade pip && pip install -r requirements.txt # Final Stage FROM python:3.11-slim