blob: b40783ffcc1b0a688f0812b3d3151e6726121a4c [file] [log] [blame]
Matteo Scandolo4747d292019-08-05 11:50:18 -07001# Copyright 2018-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
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# bbsim dockerfile
16
17# builder parent
18FROM golang:1.12-stretch as builder
19
20# install prereqs
21ENV PROTOC_VERSION 3.6.1
22ENV PROTOC_SHA256SUM 6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807
23
24RUN apt-get update \
25 && apt-get install -y unzip libpcap-dev \
26 && curl -L -o /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip \
27 && echo "$PROTOC_SHA256SUM /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - \
28 && unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \
29 && mv /tmp/protoc3/bin/* /usr/local/bin/ \
30 && mv /tmp/protoc3/include/* /usr/local/include/ \
31 && go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway \
32 && go get -v github.com/golang/protobuf/protoc-gen-go
33
34WORKDIR /go/src/gerrit.opencord.org/bbsim
35ENV GO111MODULE=on
36ENV GOPROXY=https://proxy.golang.org
37
38# get dependencies
39COPY go.mod go.sum ./
40RUN go mod download
41
42# build the protos
43COPY Makefile ./
44COPY api ./api
45RUN make protos
46
47# copy and build
48COPY . ./
49RUN GO111MODULE=on go build -o ./cmd/bbsim ./internal/bbsim
50
51# runtime parent
52FROM golang:1.12-stretch
53
54# runtime prereqs
55# the symlink on libpcap is because both alpine and debian come with 1.8.x, but
56# debian symlinks it to 0.8 for historical reasons:
57# https://packages.debian.org/stretch/libpcap0.8-dev
58RUN apt-get update \
59 && apt-get install -y libpcap-dev isc-dhcp-server network-manager\
60 && ln -s /usr/lib/libpcap.so.1.8.1 /usr/lib/libpcap.so.0.8
61
62COPY ./configs/isc-dhcp-server /etc/default/
63COPY ./configs/dhcpd.conf /etc/dhcp/
64RUN mv /usr/sbin/dhcpd /usr/local/bin/ \
65&& mv /sbin/dhclient /usr/local/bin/ \
66&& touch /var/lib/dhcp/dhcpd.leases
67
68WORKDIR /app
69COPY --from=builder /go/src/gerrit.opencord.org/bbsim/cmd/bbsim /app/bbsim
70RUN chmod a+x /app/bbsim
71CMD [ '/app/bbsim' ]