blob: b740aae3a9d0252d840bbf7406d13195c7ea8c1d [file] [log] [blame]
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -05001# Copyright 2016 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.
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080014ARG TAG=latest
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050015
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080016FROM voltha/voltha-base:${TAG}
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050017
18MAINTAINER Zsolt Haraszti <zharaszt@ciena.com>
19MAINTAINER Ali Al-Shabibi <ali.al-shabibi@onlab.us>
20MAINTAINER Nathan Knuth <nathan.knuth@tibitcom.com>
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
40
41# Exposing process and default entry point
42CMD ["python", "netconf/netconf/main.py"]