aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/envoy/Dockerfile
diff options
context:
space:
mode:
authorGravatar Abhishek Arya <inferno@chromium.org>2020-06-10 14:46:23 -0700
committerGravatar GitHub <noreply@github.com>2020-06-10 14:46:23 -0700
commitfa06dcc8ae3b87a3db62b8459d1bd84b1e757732 (patch)
tree6bdeee32b43782c279cdda17ceea5ab32b59091c /projects/envoy/Dockerfile
parentaf42169e03fdcad0d2aa39aadfd8aeed4a8158b9 (diff)
Remove cmake install from projects. (#3961)
Diffstat (limited to 'projects/envoy/Dockerfile')
-rw-r--r--projects/envoy/Dockerfile5
1 files changed, 0 insertions, 5 deletions
diff --git a/projects/envoy/Dockerfile b/projects/envoy/Dockerfile
index b6566595..25732ede 100644
--- a/projects/envoy/Dockerfile
+++ b/projects/envoy/Dockerfile
@@ -34,11 +34,6 @@ RUN apt-get update && apt-get -y install \
RUN wget -O /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v0.0.8/bazelisk-linux-amd64
RUN chmod +x /usr/local/bin/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/