From aae60ea467b085ed6234b5594eae2bd3ef592c28 Mon Sep 17 00:00:00 2001 From: "krish7919 (Krish)" Date: Tue, 31 Jan 2017 17:03:02 +0100 Subject: [PATCH] Solves #1105. The `apt-get update` command executed with the install instructions should not use a locally cached storage layer. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c181625a..54fdc41b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ ENV LANG en_US.UTF-8 -RUN apt-get -y install python3 python3-pip libffi-dev -RUN pip3 install --upgrade pip -RUN pip3 install --upgrade setuptools +RUN apt-get update && apt-get -y install python3 python3-pip libffi-dev \ + && pip3 install --upgrade pip \ + && pip3 install --upgrade setuptools RUN mkdir -p /usr/src/app