diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 548da0a1f..a07832d32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,8 +75,8 @@ RUN set -x \ && cd "$GOPATH/src/github.com/containernetworking/plugins" \ && git checkout -q "$CNI_COMMIT" \ && ./build.sh \ - && mkdir -p /opt/cni/bin \ - && cp bin/* /opt/cni/bin/ \ + && mkdir -p /usr/libexec/cni \ + && cp bin/* /usr/libexec/cni \ && rm -rf "$GOPATH" # Install custom CNI bridge test plugin |