From a8d09a9f0126c3b979d856008c58bc60f9eaec08 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Fri, 5 Mar 2021 15:26:27 -0800 Subject: [PATCH] --no-cache notebook (#2381) --- 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