From 8a3d428327b666134bcaa0298f539288200d159b Mon Sep 17 00:00:00 2001 From: Filippo Ledda Date: Tue, 31 Oct 2023 12:31:05 +0100 Subject: [PATCH] Add pip upgrade to dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 01f74fe..998ac05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,8 @@ RUN mkdir workspace USER root -RUN python utilities/install.py --npm-skip +RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\ + python utilities/install.py --npm-skip RUN rm -rf /var/lib/apt/lists