--no-cache notebook (#2381)

This commit is contained in:
Glenn Jocher 2021-03-05 15:26:27 -08:00 committed by GitHub
parent 300d518f73
commit 692e1f31dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ RUN apt update && apt install -y zip htop screen libgl1-mesa-glx
# Install python dependencies # Install python dependencies
RUN python -m pip install --upgrade pip RUN python -m pip install --upgrade pip
COPY requirements.txt . COPY requirements.txt .
RUN pip install -r requirements.txt gsutil RUN pip install --no-cache -r requirements.txt gsutil notebook
# Create working directory # Create working directory
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app