File tree 4 files changed +20
-31
lines changed
4 files changed +20
-31
lines changed Original file line number Diff line number Diff line change 1
- # #
2
- # Copyright 2017 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
1
# Docker v2plugin container with OVS / netplugin / netmaster
17
2
18
- FROM alpine:3.6
3
+ FROM alpine:3.5
19
4
LABEL maintainer "Cisco Contiv (https://contiv.github.io)"
20
5
21
- RUN mkdir -p /run/docker/plugins /etc/openvswitch /var/log /contiv \
6
+ RUN mkdir -p /run/docker/plugins /etc/openvswitch /var/run /contiv/log \
22
7
&& echo 'http://dl-cdn.alpinelinux.org/alpine/v3.4/main' >> /etc/apk/repositories \
23
- && apk --no-cache add openvswitch=2.5.0-r0 iptables ca-certificates openssl curl bash
8
+ && apk --no-cache add openvswitch=2.5.0-r0 iptables ca-certificates openssl curl \
9
+ && wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/andyshinn/alpine-pkg-glibc/master/sgerrand.rsa.pub \
10
+ && wget https://github.com/andyshinn/alpine-pkg-glibc/releases/download/2.23-r1/glibc-2.23-r1.apk \
11
+ && apk --no-cache add glibc-2.23-r1.apk
24
12
25
13
COPY netplugin netmaster netctl startcontiv.sh /
26
14
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ import (
19
19
"log/syslog"
20
20
"net/url"
21
21
"os"
22
+ "os/user"
22
23
"strings"
23
- "syscall"
24
24
"time"
25
25
26
26
"github.com/contiv/netplugin/core"
@@ -181,8 +181,8 @@ func main() {
181
181
}
182
182
183
183
// Make sure we are running as root
184
- uid := syscall . Getuid ()
185
- if uid != 0 {
184
+ usr , err := user . Current ()
185
+ if ( err != nil ) || ( usr . Username != "root" ) {
186
186
log .Fatalf ("This process can only be run as root" )
187
187
}
188
188
Original file line number Diff line number Diff line change 26
26
fi
27
27
28
28
echo $BUILD_VERSION > $VERSION_FILE
29
- GOGC=1500 CGO_ENABLED=0 go install \
30
- -a -installsuffix cgo \
29
+
30
+ GOGC=1500 go install \
31
31
-ldflags " -X $PKG_NAME .version=$BUILD_VERSION \
32
32
-X $PKG_NAME .buildTime=$BUILD_TIME \
33
33
-X $PKG_NAME .gitCommit=$GIT_COMMIT \
34
- -s -w -d " -pkgdir /tmp/foo-cgo \
34
+ -s -w" \
35
35
-v $TO_BUILD
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
# #
15
15
16
- # One Container for OVS / netplugin / netmaster
16
+ # One Container for OVS / netplugin / netmaster
17
17
18
- FROM alpine:3.6
19
- LABEL maintainer "Cisco Contiv (https://contiv.github.io)"
18
+ FROM ubuntu:16.04
20
19
21
- # Make sure to Modify the Proxy Server values if required
20
+ # Make sure to Modify the Proxy Server values if required
22
21
# ENV export http_proxy=http://proxy.localhost.com:8080
23
22
# ENV export https_proxy=https://proxy.localhost.com:8080
24
23
25
- RUN mkdir -p /etc/openvswitch \
26
- && echo 'http://dl-cdn.alpinelinux.org/alpine/v3.4/main' >> /etc/apk/repositories \
27
- && apk --no-cache add openvswitch=2.5.0-r0 iptables ca-certificates openssl curl bash
24
+ RUN apt-get update \
25
+ && apt-get install -y openvswitch-switch=2.5.2-0ubuntu0.16.04.1 \
26
+ net-tools \
27
+ iptables \
28
+ && rm -rf /var/lib/apt/lists/*
28
29
29
30
COPY ./bin /contiv/bin/
30
31
COPY ./scripts /contiv/scripts/
You can’t perform that action at this time.
0 commit comments