aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-22 16:46:31 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-10-04 11:21:36 +0200
commit49af94dafccc7385f92c84ab9f3c64bb03492967 (patch)
tree301ae7f40636fe340d6d9a5bca6ac878e4fabdfe /templates
parentc08c3ccbae87e7e5f040a3045bac520f27ba20fd (diff)
add cmake to C# docker images
Diffstat (limited to 'templates')
-rw-r--r--templates/tools/dockerfile/csharp_deps.include7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/tools/dockerfile/csharp_deps.include b/templates/tools/dockerfile/csharp_deps.include
index 3a40711e37..7ed0074867 100644
--- a/templates/tools/dockerfile/csharp_deps.include
+++ b/templates/tools/dockerfile/csharp_deps.include
@@ -15,3 +15,10 @@ RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y ${'\\'}
&& apt-get clean
RUN nuget update -self
+
+#=================
+# Use cmake 3.6 from jessie-backports
+# needed to build grpc_csharp_ext with cmake
+
+RUN echo "deb http://ftp.debian.org/debian jessie-backports main" | tee /etc/apt/sources.list.d/jessie-backports.list
+RUN apt-get update && apt-get install -t jessie-backports -y cmake && apt-get clean