blob: a85552e1355485bd742c4cfe00dfd2f0f2f23d5e [file] [log] [blame]
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +09001# Copyright 2018-present Open Networking Foundation
Zack Williams86f87202018-10-05 10:36:32 -07002#
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#
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +09007# http://www.apache.org/licenses/LICENSE-2.0
Zack Williams86f87202018-10-05 10:36:32 -07008#
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
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090017# builder parent
18FROM golang:1.10-stretch as builder
Zack Williams86f87202018-10-05 10:36:32 -070019
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090020# install prereqs
21ENV PROTOC_VERSION 3.6.1
22ENV PROTOC_SHA256SUM 6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807
Zack Williams86f87202018-10-05 10:36:32 -070023
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090024RUN 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 \
Shad Ansari671027a2019-01-17 16:52:39 -080032 && go get -v github.com/golang/protobuf/protoc-gen-go \
33 && go get -v github.com/opencord/omci-sim
Zack Williams86f87202018-10-05 10:36:32 -070034
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090035# copy and build
36WORKDIR /go/src/gerrit.opencord.org/voltha-bbsim
37COPY . /go/src/gerrit.opencord.org/voltha-bbsim
Zack Williams86f87202018-10-05 10:36:32 -070038
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090039RUN make bbsim
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090040
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090041# runtime parent
42FROM golang:1.10-stretch
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090043
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090044# runtime prereqs
45# the symlink on libpcap is because both alpine and debian come with 1.8.x, but
46# debian symlinks it to 0.8 for historical reasons:
47# https://packages.debian.org/stretch/libpcap0.8-dev
48RUN apt-get update \
49 && apt-get install -y libpcap-dev wpasupplicant isc-dhcp-server network-manager\
50 && ln -s /usr/lib/libpcap.so.1.8.1 /usr/lib/libpcap.so.0.8
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090051
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090052COPY ./config/wpa_supplicant.conf /etc/wpa_supplicant/
53COPY ./config/isc-dhcp-server /etc/default/
54COPY ./config/dhcpd.conf /etc/dhcp/
55RUN mv /usr/sbin/dhcpd /usr/local/bin/ \
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090056&& mv /sbin/dhclient /usr/local/bin/ \
57&& touch /var/lib/dhcp/dhcpd.leases
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090058
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090059WORKDIR /app
60COPY --from=builder /go/src/gerrit.opencord.org/voltha-bbsim/bbsim /app/bbsim
Zack Williams86f87202018-10-05 10:36:32 -070061
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090062CMD [ '/app/bbsim' ]