Skip to content

Commit

Permalink
Add --no-cache-dir to pip install instructions in Dockefile (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowMitia committed Nov 1, 2023
1 parent 0754d4f commit 38c40e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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???
Expand Down Expand Up @@ -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'

0 comments on commit 38c40e0

Please sign in to comment.