diff options
Diffstat (limited to 'Dockerfile.CentOS')
-rw-r--r-- | Dockerfile.CentOS | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile.CentOS b/Dockerfile.CentOS index 217837ce0..cecb354ba 100644 --- a/Dockerfile.CentOS +++ b/Dockerfile.CentOS @@ -9,6 +9,7 @@ RUN yum -y install btrfs-progs-devel \ glib2-devel \ gnupg \ golang \ + golang-github-cpuguy83-go-md2man \ gpgme-devel \ libassuan-devel \ libseccomp-devel \ @@ -34,6 +35,14 @@ RUN set -x \ && cp bin/* /usr/libexec/cni \ && rm -rf "$GOPATH" +# Install buildah +RUN set -x \ + && export GOPATH=/go \ + && git clone https://github.com/projectatomic/buildah "$GOPATH/src/github.com/projectatomic/buildah" \ + && cd "$GOPATH/src/github.com/projectatomic/buildah" \ + && make \ + && make install + # Install ginkgo RUN set -x \ && export GOPATH=/go \ |