Permalink
Browse files

Merge pull request #5536 from cypof/docker_cudnn6

Docker update to cuDNN 6
  • Loading branch information...
2 parents 946c9b8 + 4db619a commit a7a7d3082bc43284abbc62f71e45201ccc987c75 @shelhamer shelhamer committed on GitHub Apr 15, 2017
Showing with 5 additions and 3 deletions.
  1. +2 −1 docker/cpu/Dockerfile
  2. +3 −2 docker/gpu/Dockerfile
View
@@ -28,7 +28,8 @@ ENV CAFFE_ROOT=/opt/caffe
WORKDIR $CAFFE_ROOT
# FIXME: use ARG instead of ENV once DockerHub supports this
-ENV CLONE_TAG=rc4
+# https://github.com/docker/hub-feedback/issues/460
+ENV CLONE_TAG=1.0
RUN git clone -b ${CLONE_TAG} --depth 1 https://github.com/BVLC/caffe.git . && \
pip install --upgrade pip && \
View
@@ -1,4 +1,4 @@
-FROM nvidia/cuda:8.0-cudnn5-devel-ubuntu16.04
+FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu16.04
LABEL maintainer caffe-maint@googlegroups.com
RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -28,7 +28,8 @@ ENV CAFFE_ROOT=/opt/caffe
WORKDIR $CAFFE_ROOT
# FIXME: use ARG instead of ENV once DockerHub supports this
-ENV CLONE_TAG=rc4
+# https://github.com/docker/hub-feedback/issues/460
+ENV CLONE_TAG=1.0
RUN git clone -b ${CLONE_TAG} --depth 1 https://github.com/BVLC/caffe.git . && \
pip install --upgrade pip && \

0 comments on commit a7a7d30

Please sign in to comment.