blob: d1aebf1df6c0dce922ca57ffb58aaaf7d884fcf4 [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 \
32 && go get -v github.com/golang/protobuf/protoc-gen-go
Zack Williams86f87202018-10-05 10:36:32 -070033
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090034# copy and build
35WORKDIR /go/src/gerrit.opencord.org/voltha-bbsim
36COPY . /go/src/gerrit.opencord.org/voltha-bbsim
Zack Williams86f87202018-10-05 10:36:32 -070037
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090038RUN make bbsim
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090039
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090040# runtime parent
41FROM golang:1.10-stretch
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090042
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090043# runtime prereqs
44# the symlink on libpcap is because both alpine and debian come with 1.8.x, but
45# debian symlinks it to 0.8 for historical reasons:
46# https://packages.debian.org/stretch/libpcap0.8-dev
47RUN apt-get update \
48 && apt-get install -y libpcap-dev wpasupplicant isc-dhcp-server network-manager\
49 && ln -s /usr/lib/libpcap.so.1.8.1 /usr/lib/libpcap.so.0.8
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090050
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090051COPY ./config/wpa_supplicant.conf /etc/wpa_supplicant/
52COPY ./config/isc-dhcp-server /etc/default/
53COPY ./config/dhcpd.conf /etc/dhcp/
54RUN mv /usr/sbin/dhcpd /usr/local/bin/ \
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090055&& mv /sbin/dhclient /usr/local/bin/ \
56&& touch /var/lib/dhcp/dhcpd.leases
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090057
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090058WORKDIR /app
59COPY --from=builder /go/src/gerrit.opencord.org/voltha-bbsim/bbsim /app/bbsim
Zack Williams86f87202018-10-05 10:36:32 -070060
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090061CMD [ '/app/bbsim' ]