aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/envoy/Dockerfile
diff options
context:
space:
mode:
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/