Skip to content

Commit 38c40e0

Browse files
authored
Add --no-cache-dir to pip install instructions in Dockefile (#1021)
1 parent 0754d4f commit 38c40e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN git clone https://github.com/justinmeza/lci.git ~/lolcode && cd ~/lolcode &&
5050
ENV PATH=$PATH:~/lolcode/build
5151

5252
# Setup Piet
53-
RUN pip install repiet
53+
RUN python3 -m pip install --no-cache-dir repiet
5454

5555
# Setup Matlab
5656
# ?????? This is a licensed language???
@@ -107,6 +107,6 @@ RUN apt-get update \
107107
&& apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket
108108

109109

110-
RUN pip install wheel matplotlib numpy coconut scons
110+
RUN python3 -m pip install --no-cache-dir wheel matplotlib numpy coconut scons
111111

112112
RUN sudo sh -c 'npm install -g typescript'

0 commit comments

Comments
 (0)