--no-cache notebook (#2381)
Browse files- 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
|