Switch to github.com/golang/dep for vendoring
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
parent
d6ab91be27
commit
8e5b17cf13
15431 changed files with 3971413 additions and 8881 deletions
20
vendor/github.com/containernetworking/cni/Vagrantfile
generated
vendored
Normal file
20
vendor/github.com/containernetworking/cni/Vagrantfile
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure(2) do |config|
|
||||
config.vm.box = "bento/ubuntu-16.04"
|
||||
|
||||
config.vm.synced_folder ".", "/go/src/github.com/containernetworking/cni"
|
||||
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
set -e -x -u
|
||||
|
||||
apt-get update -y || (sleep 40 && apt-get update -y)
|
||||
apt-get install -y golang git
|
||||
echo "export GOPATH=/go" >> /root/.bashrc
|
||||
export GOPATH=/go
|
||||
go get github.com/tools/godep
|
||||
cd /go/src/github.com/containernetworking/cni
|
||||
/go/bin/godep restore
|
||||
SHELL
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue