diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-31 21:15:33 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-02 12:38:14 +0000 |
commit | 6b37608260795887c6ad34433568918d3dfb159e (patch) | |
tree | 5c62b1dda885ea53066198194ea993afc3a92cd1 | |
parent | 03ec980dcfbe6232698c322bfcd3b8d1de271b7e (diff) | |
download | podman-6b37608260795887c6ad34433568918d3dfb159e.tar.gz podman-6b37608260795887c6ad34433568918d3dfb159e.tar.bz2 podman-6b37608260795887c6ad34433568918d3dfb159e.zip |
Remove crictl from Dockerfile
We don't have a CRI API, we'll never use it
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #570
Approved by: rhatdan
-rw-r--r-- | Dockerfile | 11 |
1 files changed, 0 insertions, 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 \ |