Skip to content

Commit

Permalink
Merge pull request #1061 from okuta/bp-1060-docker-no-cachedir
Browse files Browse the repository at this point in the history
[backport] use --no-cache-dir in Dockerfile
  • Loading branch information
kmaehashi committed Mar 27, 2018
2 parents 0e7b89b + 2b069fe commit 1cb7f60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/python2/Dockerfile
Original file line number Diff line number Diff line change
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
RUN pip install --no-cache-dir cupy-cuda80==4.0.0rc1
2 changes: 1 addition & 1 deletion docker/python3/Dockerfile
Original file line number Diff line number Diff line change
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
RUN pip3 install --no-cache-dir cupy-cuda80==4.0.0rc1

0 comments on commit 1cb7f60

Please sign in to comment.