From 9191a994fc438c2ac26cc7c1626b0afa329e46ed Mon Sep 17 00:00:00 2001 From: Masatoshi Hayashi Date: Tue, 24 Oct 2017 18:55:20 +0900 Subject: [PATCH] fixes runc install path on Dockerfile In the config file (/etc/crio/crio.conf) installed by `make install.config` , runc runtime path is specified "/usr/bin/runc" Signed-off-by: Masatoshi Hayashi --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3caf5ac5..607d5a86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,7 +64,7 @@ RUN set -x \ && git fetch origin --tags \ && git checkout -q "$RUNC_COMMIT" \ && make static BUILDTAGS="seccomp selinux" \ - && cp runc /usr/local/bin/runc \ + && cp runc /usr/bin/runc \ && rm -rf "$GOPATH" # Install CNI plugins