Skip to content

Commit

Permalink
Merge pull request #4532 from kmaehashi/docker-no-cachedir
Browse files Browse the repository at this point in the history
use --no-cache-dir in Dockerfile
  • Loading branch information
niboshi committed Mar 28, 2018
2 parents 277f7ac + 9869100 commit 9823629
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/intel/python2/Dockerfile
Expand Up @@ -8,4 +8,4 @@ RUN apt-get update -y && \
python-setuptools && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN pip install ideep4py chainer==4.0.0rc1
RUN pip install --no-cache-dir ideep4py chainer==4.0.0rc1
2 changes: 1 addition & 1 deletion docker/intel/python3/Dockerfile
Expand Up @@ -8,4 +8,4 @@ RUN apt-get update -y && \
python3-setuptools && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN pip3 install ideep4py chainer==4.0.0rc1
RUN pip3 install --no-cache-dir ideep4py chainer==4.0.0rc1
2 changes: 1 addition & 1 deletion docker/python2/Dockerfile
Expand Up @@ -8,4 +8,4 @@ RUN apt-get update -y && \
python-setuptools && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN pip install cupy-cuda80==4.0.0rc1 chainer==4.0.0rc1
RUN pip install --no-cache-dir cupy-cuda80==4.0.0rc1 chainer==4.0.0rc1
2 changes: 1 addition & 1 deletion docker/python3/Dockerfile
Expand Up @@ -8,4 +8,4 @@ RUN apt-get update -y && \
python3-setuptools && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN pip3 install cupy-cuda80==4.0.0rc1 chainer==4.0.0rc1
RUN pip3 install --no-cache-dir cupy-cuda80==4.0.0rc1 chainer==4.0.0rc1

0 comments on commit 9823629

Please sign in to comment.