Skip to content

Commit 319f75e

Browse files
committed
Fixed docker builds label and space
1 parent 53b2673 commit 319f75e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/cpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM ubuntu:16.04
2-
2+
LABEL maintainer [email protected]
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
build-essential \

docker/gpu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM nvidia/cuda:8.0-cudnn5-devel-ubuntu16.04
2-
2+
LABEL maintainer [email protected]
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
build-essential \
@@ -33,7 +33,7 @@ ENV CLONE_TAG=1.0.0-rc4
3333
RUN git clone -b ${CLONE_TAG} --depth 1 https://github.com/BVLC/caffe.git . && \
3434
pip install --upgrade pip && \
3535
cd python && for req in $(cat requirements.txt) pydot; do pip install $req; done && cd .. && \
36-
git clone https://github.com/NVIDIA/nccl.git && cd nccl && make -j install && cd .. && \
36+
git clone https://github.com/NVIDIA/nccl.git && cd nccl && make -j install && cd .. && rm -rf nccl && \
3737
mkdir build && cd build && \
3838
cmake -DUSE_CUDNN=1 -DUSE_NCCL=1 .. && \
3939
make -j"$(nproc)"

0 commit comments

Comments
 (0)