|
1 |
| -## |
2 |
| -#Copyright 2014 Cisco Systems Inc. All rights reserved. |
3 |
| -# |
4 |
| -#Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
| -#you may not use this file except in compliance with the License. |
6 |
| -#You may obtain a copy of the License at |
7 |
| -#http://www.apache.org/licenses/LICENSE-2.0 |
8 |
| -# |
9 |
| -#Unless required by applicable law or agreed to in writing, software |
10 |
| -#distributed under the License is distributed on an "AS IS" BASIS, |
11 |
| -#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 |
| -#See the License for the specific language governing permissions and |
13 |
| -#limitations under the License. |
14 |
| -## |
15 |
| - |
16 |
| -## |
17 |
| -# Container image for compiled netplugin binaries |
18 |
| -# |
19 |
| -# Run netplugin: |
20 |
| -# docker run --net=host <image> -host-label=<label> |
21 |
| -## |
22 |
| - |
23 |
| -FROM golang:1.7.6 |
24 |
| - |
25 |
| -# Insert your proxy server settings if this build is running behind |
26 |
| -# a proxy. |
27 |
| -#ENV http_proxy "" |
28 |
| -#ENV https_proxy "" |
29 |
| -ARG http_proxy |
30 |
| -ARG https_proxy |
31 |
| - |
32 |
| -WORKDIR /go/src/github.com/contiv/netplugin/ |
33 |
| - |
34 |
| -ENTRYPOINT ["netplugin"] |
35 |
| -CMD ["--help"] |
36 |
| - |
37 |
| -# by far, most of the compilation time is building vendor packages |
38 |
| -# build the vendor dependencies as a separate docker caching layer |
39 |
| -COPY ./vendor/ /go/src/github.com/contiv/netplugin/vendor/ |
40 |
| -COPY ./objdb/ /go/src/github.com/contiv/netplugin/objdb/ |
41 |
| - |
42 |
| -RUN GOGC=1500 go install -ldflags "-s -w" $(go list ./vendor/...) |
43 |
| - |
44 |
| -# build the netplugin binaries |
45 |
| -COPY ./ /go/src/github.com/contiv/netplugin/ |
46 |
| - |
47 |
| -ARG BUILD_VERSION="" |
48 |
| -ARG NIGHTLY_RELEASE="" |
49 |
| - |
50 |
| -RUN GOPATH=/go/ \ |
51 |
| - BUILD_VERSION="${BUILD_VERSION}" \ |
52 |
| - NIGHTLY_RELEASE="${NIGHTLY_RELEASE}" \ |
53 |
| - make compile \ |
54 |
| - && cp scripts/contrib/completion/bash/netctl /etc/bash_completion.d/netctl \ |
55 |
| - && netplugin -version |
| 1 | +# builder is where netplugin got complied |
| 2 | +FROM golang:1.7.6 as builder |
| 3 | + |
| 4 | +ENV GOPATH /go |
| 5 | + |
| 6 | +COPY . $GOPATH/src/github.com/contiv/netplugin/ |
| 7 | + |
| 8 | +WORKDIR $GOPATH/src/github.com/contiv/netplugin/ |
| 9 | + |
| 10 | +RUN VERSION_SUFFIX="$(if git diff-index --quiet HEAD --; then echo '-unsupported'; fi)" && \ |
| 11 | + GIT_COMMIT=$(git rev-parse --short HEAD)$VERSION_SUFFIX && \ |
| 12 | + BUILD_VERSION=$(git describe --tags --always)$VERSION_SUFFIX && \ |
| 13 | + PKG_NAME=github.com/contiv/netplugin/version && \ |
| 14 | + BUILD_TIME=$(date -u +%m-%d-%Y.%H-%M-%S.UTC) && \ |
| 15 | + GOGC=1500 CGO_ENABLED=0 go install -v \ |
| 16 | + -a -installsuffix cgo \ |
| 17 | + -ldflags "-X $PKG_NAME.version=$BUILD_VERSION \ |
| 18 | + -X $PKG_NAME.buildTime=$BUILD_TIME \ |
| 19 | + -X $PKG_NAME.gitCommit=$GIT_COMMIT \ |
| 20 | + -s -w -d" -pkgdir /tmp/foo-cgo \ |
| 21 | + ./netplugin/ ./netmaster/ ./netctl/netctl/ ./mgmtfn/k8splugin/contivk8s/ && \ |
| 22 | + mkdir -p /contiv/bin && \ |
| 23 | + for bin in netplugin netmaster netctl contivk8s; do cp /go/bin/$bin /contiv/bin/ ; done && \ |
| 24 | + /contiv/bin/netplugin --version && /contiv/bin/netmaster --version |
| 25 | + |
| 26 | +# The container where netplugin will be run |
| 27 | +FROM ubuntu:16.04 |
| 28 | + |
| 29 | +RUN apt-get update \ |
| 30 | + && apt-get install -y openvswitch-switch=2.5.2* \ |
| 31 | + net-tools \ |
| 32 | + iptables \ |
| 33 | + && rm -rf /var/lib/apt/lists/* |
| 34 | + |
| 35 | +COPY --from=builder /contiv/bin/ /contiv/bin/ |
| 36 | +COPY --from=builder /go/src/github.com/contiv/netplugin/scripts/netContain/scripts/ /contiv/scripts/ |
| 37 | + |
| 38 | +ENTRYPOINT ["/contiv/scripts/contivNet.sh"] |
0 commit comments