The `apt-get update` command executed with the install instructions
should not use a locally cached storage layer.
This commit is contained in:
krish7919 (Krish) 2017-01-31 17:03:02 +01:00 committed by Sylvain Bellemare
parent 0600483a90
commit aae60ea467

View File

@ -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