diff options
Diffstat (limited to 'Dockerfile.CentOS')
-rw-r--r-- | Dockerfile.CentOS | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Dockerfile.CentOS b/Dockerfile.CentOS index db7cb839e..865585cfd 100644 --- a/Dockerfile.CentOS +++ b/Dockerfile.CentOS @@ -6,6 +6,7 @@ RUN yum -y install btrfs-progs-devel \ device-mapper-devel \ findutils \ git \ + glibc-static \ glib2-devel \ gnupg \ golang \ @@ -56,16 +57,16 @@ RUN set -x \ && go get github.com/onsi/gomega/... # Install conmon -ENV CRIO_COMMIT 814c6ab0913d827543696b366048056a31d9529c +ENV CRIO_COMMIT 66788a10e57f42faf741c2f149d0ee6635063014 RUN set -x \ && export GOPATH="$(mktemp -d)" \ && git clone https://github.com/kubernetes-incubator/cri-o.git "$GOPATH/src/github.com/kubernetes-incubator/cri-o.git" \ && cd "$GOPATH/src/github.com/kubernetes-incubator/cri-o.git" \ && git fetch origin --tags \ && git checkout -q "$CRIO_COMMIT" \ - && mkdir bin \ - && make conmon \ - && install -D -m 755 bin/conmon /usr/libexec/crio/conmon \ + && make \ + && make bin/conmon \ + && install -D -m 755 bin/conmon /usr/libexec/podman/conmon \ && rm -rf "$GOPATH" # Install cni config |