From 5fb5bbe71f904a5036026c74dd45a9d8c198d893 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Fri, 5 Mar 2021 15:25:10 -0800 Subject: [PATCH] --no-cache notebook --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d42af2f78954..1a8fe2e72885 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt update && apt install -y zip htop screen libgl1-mesa-glx # Install python dependencies RUN python -m pip install --upgrade pip COPY requirements.txt . -RUN pip install -r requirements.txt gsutil +RUN pip install --no-cache -r requirements.txt gsutil notebook # Create working directory RUN mkdir -p /usr/src/app