blob: 56e1c7ad0a58f2afbf0779564328c1b7d3fa6160 [file] [log] [blame]
David K. Bainbridge10a7a7e2018-01-29 09:54:40 -08001# Copyright 2018 the original author or authors.
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.
14ARG TAG=latest
15ARG REGISTRY=
16ARG REPOSITORY=
17FROM ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} as protos
18FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG}
19
20MAINTAINER Voltha Community <info@opennetworking.org>
21
22# Install protoc version 3.0.0; this is not yet the supported
23# version on xenial, so we need to "backport" it
24RUN apt-get update && \
25 apt-get install -y zlib1g-dev wget && \
26 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotoc10_3.0.0-9_amd64.deb && \
27 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotobuf-lite10_3.0.0-9_amd64.deb && \
28 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotobuf-dev_3.0.0-9_amd64.deb && \
29 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotobuf10_3.0.0-9_amd64.deb && \
30 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/protobuf-compiler_3.0.0-9_amd64.deb && \
31 dpkg -i *.deb && \
32 protoc --version && \
33 rm -f *.deb
34
35# Bundle app source
36RUN mkdir /netconf && touch /netconf/__init__.py
37ENV PYTHONPATH=/netconf
38COPY common /netconf/common
39COPY netconf /netconf/netconf
40COPY --from=protos /protos/voltha /netconf/netconf/protos
41COPY --from=protos /protos/google/api /netconf/netconf/protos/third_party/google/api
42COPY --from=protos /protos/voltha/yang_options* /netconf/netconf/protoc_plugins/
43
44# Exposing process and default entry point
45CMD ["python", "netconf/netconf/main.py"]