From 6b37608260795887c6ad34433568918d3dfb159e Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Sat, 31 Mar 2018 21:15:33 -0400 Subject: Remove crictl from Dockerfile We don't have a CRI API, we'll never use it Signed-off-by: Matthew Heon Closes: #570 Approved by: rhatdan --- Dockerfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6a29269b3..30bf36915 100644 --- a/Dockerfile +++ b/Dockerfile @@ -86,17 +86,6 @@ RUN set -x \ && cp bin/* /usr/libexec/cni \ && rm -rf "$GOPATH" -# Install crictl -ENV CRICTL_COMMIT 16e6fe4d7199c5689db4630a9330e6a8a12cecd1 -RUN set -x \ - && export GOPATH="$(mktemp -d)" \ - && git clone https://github.com/kubernetes-incubator/cri-tools.git "$GOPATH/src/github.com/kubernetes-incubator/cri-tools" \ - && cd "$GOPATH/src/github.com/kubernetes-incubator/cri-tools" \ - && git checkout -q "$CRICTL_COMMIT" \ - && go install github.com/kubernetes-incubator/cri-tools/cmd/crictl \ - && cp "$GOPATH"/bin/crictl /usr/bin/ \ - && rm -rf "$GOPATH" - # Install buildah RUN set -x \ && export GOPATH=/go \ -- cgit v1.2.3-54-g00ecf