diff options
Diffstat (limited to 'Dockerfile.fedora')
-rw-r--r-- | Dockerfile.fedora | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile.fedora b/Dockerfile.fedora index 54ab690e9..0f82fdc5c 100644 --- a/Dockerfile.fedora +++ b/Dockerfile.fedora @@ -30,13 +30,14 @@ RUN dnf -y install btrfs-progs-devel \ iptables && dnf clean all # Install CNI plugins -ENV CNI_COMMIT 412b6d31280682bb4fab4446f113c22ff1886554 +ENV CNI_COMMIT 485be65581341430f9106a194a98f0f2412245fb +ENV RUN set -x \ - && export GOPATH="$(mktemp -d)" \ + && export GOPATH="$(mktemp -d)" GOCACHE="$(mktemp -d)" \ && git clone https://github.com/containernetworking/plugins.git "$GOPATH/src/github.com/containernetworking/plugins" \ && cd "$GOPATH/src/github.com/containernetworking/plugins" \ && git checkout -q "$CNI_COMMIT" \ - && ./build.sh \ + && ./build_linux.sh \ && mkdir -p /usr/libexec/cni \ && cp bin/* /usr/libexec/cni \ && rm -rf "$GOPATH" |