aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/grpc_clang/Dockerfile
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-13 21:38:11 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-13 21:38:11 +0100
commitfaa5f51b4bb46ed652e1ad31119df3f9086f7453 (patch)
tree8622b6c4f3e716f4d286b49e1778e8deea75ef09 /tools/dockerfile/grpc_clang/Dockerfile
parentbb62706f8428357d3f96d6de9e65c8fc6b439b9c (diff)
Renaming the docker image to grpc_clang, and optimizing the build a bit.
Diffstat (limited to 'tools/dockerfile/grpc_clang/Dockerfile')
-rw-r--r--tools/dockerfile/grpc_clang/Dockerfile32
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/dockerfile/grpc_clang/Dockerfile b/tools/dockerfile/grpc_clang/Dockerfile
new file mode 100644
index 0000000000..0928121755
--- /dev/null
+++ b/tools/dockerfile/grpc_clang/Dockerfile
@@ -0,0 +1,32 @@
+FROM ubuntu:latest
+
+RUN apt-get update && apt-get install -y \
+ cmake \
+ g++ \
+ gcc \
+ git \
+ make \
+ python \
+ && apt-get clean
+
+RUN git clone -b release_36 http://llvm.org/git/llvm.git
+RUN git clone -b release_36 http://llvm.org/git/clang.git
+RUN git clone -b release_36 http://llvm.org/git/compiler-rt.git
+RUN git clone -b release_36 http://llvm.org/git/clang-tools-extra.git
+RUN git clone -b release_36 http://llvm.org/git/libcxx.git
+RUN git clone -b release_36 http://llvm.org/git/libcxxabi.git
+
+RUN mv clang llvm/tools
+RUN mv compiler-rt llvm/projects
+RUN mv clang-tools-extra llvm/tools/clang/tools
+RUN mv libcxx llvm/projects
+RUN mv libcxxabi llvm/projects
+
+RUN mkdir llvm-build
+RUN cd llvm-build && cmake \
+ -DCMAKE_BUILD_TYPE:STRING=Release \
+ -DLLVM_TARGETS_TO_BUILD:STRING=X86 \
+ ../llvm
+RUN make -C llvm-build && make -C llvm-build install && rm -rf llvm-build
+
+CMD ["bash"]