Skip to content

Commit 1f1fcbe

Browse files
committed
scripts/netContain/Dockerfile: switch to alpine
Signed-off-by: Cristian Staretu <[email protected]>
1 parent a106b70 commit 1f1fcbe

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

scripts/netContain/Dockerfile

+7-8
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,18 @@
1313
#limitations under the License.
1414
##
1515

16-
# One Container for OVS / netplugin / netmaster
16+
# One Container for OVS / netplugin / netmaster
1717

18-
FROM ubuntu:16.04
18+
FROM alpine:3.6
19+
LABEL maintainer "Cisco Contiv (https://contiv.github.io)"
1920

20-
# Make sure to Modify the Proxy Server values if required
21+
# Make sure to Modify the Proxy Server values if required
2122
# ENV export http_proxy=http://proxy.localhost.com:8080
2223
# ENV export https_proxy=https://proxy.localhost.com:8080
2324

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/*
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
2928

3029
COPY ./bin /contiv/bin/
3130
COPY ./scripts /contiv/scripts/

0 commit comments

Comments
 (0)