Skip to content

Commit e93efbf

Browse files
author
Wei Tie
committed
Create a single Dockerfile that builds K8S image
We need a single Dockerfile in order to create docker image by dockerhub autobuild, and also make it easy for nightly build and dev build. Signed-off-by: Wei Tie <[email protected]>
1 parent 0308c0f commit e93efbf

File tree

4 files changed

+90
-57
lines changed

4 files changed

+90
-57
lines changed

.dockerignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# we want to get the git commit SHA but not all the binary repo data
2-
.git/objects/pack
31
bin/
42
**/*.pyc
53
.vagrant

Dockerfile

+38-55
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,38 @@
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"]

Dockerfile-compile

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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+
ARG http_proxy
26+
ARG https_proxy
27+
28+
WORKDIR /go/src/github.com/contiv/netplugin/
29+
30+
ENTRYPOINT ["netplugin"]
31+
CMD ["--help"]
32+
33+
# by far, most of the compilation time is building vendor packages
34+
# build the vendor dependencies as a separate docker caching layer
35+
COPY ./vendor/ /go/src/github.com/contiv/netplugin/vendor/
36+
COPY ./objdb/ /go/src/github.com/contiv/netplugin/objdb/
37+
38+
RUN GOGC=1500 go install -ldflags "-s -w" $(go list ./vendor/...)
39+
40+
# build the netplugin binaries
41+
COPY ./ /go/src/github.com/contiv/netplugin/
42+
43+
ARG BUILD_VERSION=""
44+
ARG NIGHTLY_RELEASE=""
45+
46+
RUN GOPATH=/go/ \
47+
BUILD_VERSION="${BUILD_VERSION}" \
48+
NIGHTLY_RELEASE="${NIGHTLY_RELEASE}" \
49+
make compile \
50+
&& cp scripts/contrib/completion/bash/netctl /etc/bash_completion.d/netctl \
51+
&& netplugin -version

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ run-build: deps checks clean compile archive
106106

107107
compile-with-docker:
108108
docker build \
109+
-f Dockerfile-compile \
109110
--build-arg NIGHTLY_RELEASE=$(NIGHTLY_RELEASE) \
110111
--build-arg BUILD_VERSION=$(VERSION) \
111112
-t netplugin-build:$(NETPLUGIN_CONTAINER_TAG) .

0 commit comments

Comments
 (0)