diff options
author | Nicolas 'Pixel' Noble <nicolas@nobis-crew.org> | 2016-05-05 10:48:25 -0700 |
---|---|---|
committer | Nicolas 'Pixel' Noble <nicolas@nobis-crew.org> | 2016-05-05 10:48:25 -0700 |
commit | f4fef8891163c22e024891c72856f08f3c47b335 (patch) | |
tree | 3d1a4a4ca484485de9fe2f9240aa7bece00970f1 /tools | |
parent | 66e9d8e8a7717d7ccece629df4454fc546e19daa (diff) |
Pinning the llvm repository on 3.8.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dockerfile/grpc_clang_format/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dockerfile/grpc_clang_format/Dockerfile b/tools/dockerfile/grpc_clang_format/Dockerfile index 41239e9c23..ab58017a02 100644 --- a/tools/dockerfile/grpc_clang_format/Dockerfile +++ b/tools/dockerfile/grpc_clang_format/Dockerfile @@ -30,8 +30,8 @@ FROM ubuntu:wily RUN apt-get update RUN apt-get -y install wget -RUN echo deb http://llvm.org/apt/wily/ llvm-toolchain-wily main >> /etc/apt/sources.list -RUN echo deb-src http://llvm.org/apt/wily/ llvm-toolchain-wily main >> /etc/apt/sources.list +RUN echo deb http://llvm.org/apt/wily/ llvm-toolchain-wily-3.8 main >> /etc/apt/sources.list +RUN echo deb-src http://llvm.org/apt/wily/ llvm-toolchain-wily-3.8 main >> /etc/apt/sources.list RUN wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key| apt-key add - RUN apt-get update RUN apt-get -y install clang-format-3.8 |