From 5e814a042cc7791cf08ab8a3548ecd1b3965ecbe Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Fri, 27 Oct 2017 23:37:08 -0400 Subject: [PATCH] fix conmon Signed-off-by: Jess Frazelle --- crio/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/crio/Dockerfile b/crio/Dockerfile index 7c51b20..b30500e 100644 --- a/crio/Dockerfile +++ b/crio/Dockerfile @@ -104,6 +104,7 @@ RUN buildDeps=' \ && make binaries crio.conf BUILDTAGS="seccomp apparmor selinux $(./hack/btrfs_tag.sh) $(./hack/libdm_tag.sh) $(./hack/btrfs_installed_tag.sh)" \ && make install.bin install.config PREFIX="" \ && sed -i 's#runtime = "/usr/bin/runc"#runtime = "/sbin/runc"#' /etc/crio/crio.conf \ + && sed -i 's#conmon = "/usr/local/libexec/crio/conmon"#conmon = "/libexec/crio/conmon"#' /etc/crio/crio.conf \ ) \ && rm -rf "$BUILDPATH" "$GOPATH" "/usr/local/go" \ && apt-get purge -y --auto-remove $buildDeps