aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/envoy/Dockerfile
diff options
context:
space:
mode:
authorGravatar asraa <asraa@google.com>2019-09-23 16:19:02 -0400
committerGravatar Abhishek Arya <inferno@chromium.org>2019-09-23 13:19:02 -0700
commit2b13d85d0cb46d865e4d846794001aed7ab963fb (patch)
treefe822e07b3345fa78fd11de3bf29104b5158c8cc /projects/envoy/Dockerfile
parentd488ec15e7548f0bf5c73823782fb2fb2794d210 (diff)
use updated version of cmake (#2882)
Signed-off-by: Asra Ali <asraa@google.com>
Diffstat (limited to 'projects/envoy/Dockerfile')
-rw-r--r--projects/envoy/Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/projects/envoy/Dockerfile b/projects/envoy/Dockerfile
index 095786dc..e507358b 100644
--- a/projects/envoy/Dockerfile
+++ b/projects/envoy/Dockerfile
@@ -25,7 +25,6 @@ RUN apt-get update && apt-get -y install \
curl \
autoconf \
libtool \
- cmake \
wget \
golang \
python
@@ -35,6 +34,11 @@ RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
RUN apt-get update && apt-get install -y bazel
+# Install cmake
+RUN wget https://github.com/Kitware/CMake/releases/download/v3.14.5/cmake-3.14.5-Linux-x86_64.sh; \
+ chmod +x cmake-3.14.5-Linux-x86_64.sh; \
+ ./cmake-3.14.5-Linux-x86_64.sh --skip-license --prefix="/usr/local"
+
RUN git clone https://github.com/envoyproxy/envoy.git
WORKDIR $SRC/envoy/
COPY build.sh $SRC/