David K. Bainbridge | 10a7a7e | 2018-01-29 09:54:40 -0800 | [diff] [blame] | 1 | # 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. |
| 14 | ARG TAG=latest |
| 15 | ARG REGISTRY= |
| 16 | ARG REPOSITORY= |
| 17 | FROM ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} as protos |
| 18 | FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG} |
| 19 | |
| 20 | MAINTAINER 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 |
| 24 | RUN 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 |
| 36 | RUN mkdir /netconf && touch /netconf/__init__.py |
| 37 | ENV PYTHONPATH=/netconf |
| 38 | COPY common /netconf/common |
| 39 | COPY netconf /netconf/netconf |
| 40 | COPY --from=protos /protos/voltha /netconf/netconf/protos |
| 41 | COPY --from=protos /protos/google/api /netconf/netconf/protos/third_party/google/api |
| 42 | COPY --from=protos /protos/voltha/yang_options* /netconf/netconf/protoc_plugins/ |
| 43 | |
| 44 | # Exposing process and default entry point |
| 45 | CMD ["python", "netconf/netconf/main.py"] |