Skip to content

Commit 4e216bf

Browse files
authored
Merge pull request #1044 from contiv/master
Merge master into release-1.1
2 parents 0387d8f + 942dc94 commit 4e216bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1593
-549
lines changed

.dockerignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# we want to get the git commit SHA but not all the binary repo data
22
.git/objects/pack
33
bin/
4+
.vagrant
45
vagrant/
56
docs/
67
scripts/gobgp
78
*.tar
89
*.bz2
10+
# export from a docker container, no need to copy into any docker containers
11+
install/v2plugin/rootfs
12+
vagrant/k8s/export/netctl

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.o
33
*.a
44
*.so
5+
*.bz2
56

67
# Folders
78
_obj

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
##
1515

1616
##
17-
# Container image for netplugin
17+
# Container image for compiled netplugin binaries
1818
#
1919
# Run netplugin:
2020
# docker run --net=host <image> -host-label=<label>
2121
##
2222

2323
FROM golang:1.7.6
2424

25-
# Insert your proxy server settings if this build is running behind
25+
# Insert your proxy server settings if this build is running behind
2626
# a proxy.
2727
#ENV http_proxy ""
2828
#ENV https_proxy ""

Dockerfile-check

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM golang:1.7.6
2+
3+
ENV GOPATH=/go
4+
5+
WORKDIR /go/src/github.com/contiv/netplugin/
6+
7+
RUN go get github.com/golang/lint/golint \
8+
github.com/client9/misspell/cmd/misspell
9+
10+
CMD ["make", "checks"]

0 commit comments

Comments
 (0)