Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ RUN apt-get update && apt-get install -y zip
RUN go get -d golang.org/x/sys/unix
RUN go get -d github.com/Microsoft/hcsshim
RUN go get -d github.com/containernetworking/cni/pkg/skel
RUN go get -d k8s.io/api/core/v1
RUN go get -d k8s.io/api/networking/v1
RUN go get -d k8s.io/apimachinery/pkg/types
RUN go get -d k8s.io/apimachinery/pkg/util/wait
RUN go get -d k8s.io/client-go/informers
RUN go get -d k8s.io/client-go/informers/core/v1
RUN go get -d k8s.io/client-go/informers/networking/v1
RUN go get -d k8s.io/client-go/kubernetes
RUN go get -d k8s.io/client-go/rest
RUN go get -d k8s.io/client-go/tools/cache

COPY . /go/src/github.com/Azure/azure-container-networking

Expand Down