glenn-jocher commited on
Commit
692e1f3
·
unverified ·
1 Parent(s): 300d518

--no-cache notebook (#2381)

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ RUN apt update && apt install -y zip htop screen libgl1-mesa-glx
7
  # Install python dependencies
8
  RUN python -m pip install --upgrade pip
9
  COPY requirements.txt .
10
- RUN pip install -r requirements.txt gsutil
11
 
12
  # Create working directory
13
  RUN mkdir -p /usr/src/app
 
7
  # Install python dependencies
8
  RUN python -m pip install --upgrade pip
9
  COPY requirements.txt .
10
+ RUN pip install --no-cache -r requirements.txt gsutil notebook
11
 
12
  # Create working directory
13
  RUN mkdir -p /usr/src/app