From 38c40e075d8a454f97aca03624d4ce398d16470a Mon Sep 17 00:00:00 2001 From: Dimitri Belopopsky Date: Wed, 1 Nov 2023 15:45:15 +0100 Subject: [PATCH] Add --no-cache-dir to pip install instructions in Dockefile (#1021) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index af716018d..7e8a3826a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ RUN git clone https://github.com/justinmeza/lci.git ~/lolcode && cd ~/lolcode && ENV PATH=$PATH:~/lolcode/build # Setup Piet -RUN pip install repiet +RUN python3 -m pip install --no-cache-dir repiet # Setup Matlab # ?????? This is a licensed language??? @@ -107,6 +107,6 @@ RUN apt-get update \ && apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket -RUN pip install wheel matplotlib numpy coconut scons +RUN python3 -m pip install --no-cache-dir wheel matplotlib numpy coconut scons RUN sudo sh -c 'npm install -g typescript'