This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ MAINTAINER Marc Villacorta Morera <[email protected]> | |
# Environment variables: | ||
#------------------------------------------------------------------------------ | ||
|
||
ENV VERSION="v0.5.0" \ | ||
ENV VERSION="v0.5.2" \ | ||
CGO_ENABLED="0" | ||
|
||
#------------------------------------------------------------------------------ | ||
|
@@ -19,7 +19,7 @@ ENV VERSION="v0.5.0" \ | |
RUN apk add --no-cache -U -t deps git go bash musl-dev \ | ||
&& git clone https://github.com/containernetworking/cni.git \ | ||
&& cd cni && git checkout tags/${VERSION} -b build \ | ||
&& ./build && mkdir /cni-plugins; mv bin/* /cni-plugins \ | ||
&& ./build.sh && mkdir /cni-plugins; mv bin/* /cni-plugins \ | ||
&& apk del --purge deps && rm -rf /cni /var/cache/apk/* | ||
|
||
#------------------------------------------------------------------------------ | ||
|