Don't cache PyPI in Docker image

Frank Sachsenheim 11 years ago
parent cdeebbe1bd
commit 3a05d44a38

@ -42,8 +42,8 @@ RUN curl -O https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py \
&& rm get-pip.py
RUN pip2 install ipykernel
RUN pip3 install ipykernel
RUN pip2 --no-cache-dir install ipykernel
RUN pip3 --no-cache-dir install ipykernel
RUN mkdir -p /srv/
ADD . /srv/notebook

Loading…
Cancel
Save