blob: 9ac0c0532908ceaddd91bdff1422749f53a2b8b1 [file] [log] [blame]
Khen Nursimulu68b9be32016-10-25 11:57:04 -04001# 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
David K. Bainbridge737b74f2018-01-22 12:57:52 -080015ARG REGISTRY=
16ARG REPOSITORY=
Khen Nursimulu68b9be32016-10-25 11:57:04 -040017
David K. Bainbridge737b74f2018-01-22 12:57:52 -080018FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG}
Khen Nursimulu68b9be32016-10-25 11:57:04 -040019
20MAINTAINER Zsolt Haraszti <zharaszt@ciena.com>
21MAINTAINER Ali Al-Shabibi <ali.al-shabibi@onlab.us>
22MAINTAINER Nathan Knuth <nathan.knuth@tibitcom.com>
23
24# Install protoc version 3.0.0; this is not yet the supported
25# version on xenial, so we need to "backport" it
26RUN apt-get update && \
27 apt-get install -y zlib1g-dev wget && \
Khen Nursimuluee8d0b52016-12-05 15:28:29 -050028 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotoc10_3.0.0-9_amd64.deb && \
29 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotobuf-lite10_3.0.0-9_amd64.deb && \
30 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotobuf-dev_3.0.0-9_amd64.deb && \
31 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/libprotobuf10_3.0.0-9_amd64.deb && \
32 wget http://ftp.us.debian.org/debian/pool/main/p/protobuf/protobuf-compiler_3.0.0-9_amd64.deb && \
Khen Nursimulu68b9be32016-10-25 11:57:04 -040033 dpkg -i *.deb && \
34 protoc --version && \
35 rm -f *.deb
36
37# Bundle app source
Zsolt Haraszti1edb8282016-11-08 10:57:19 -080038RUN mkdir /ofagent && touch /ofagent/__init__.py
39ENV PYTHONPATH=/ofagent
40COPY common /ofagent/common
41COPY ofagent /ofagent/ofagent
schowdhury3fbd4702017-06-30 03:50:25 -070042COPY pki /ofagent/pki
Khen Nursimulu68b9be32016-10-25 11:57:04 -040043
alshabib06b449c2017-01-15 17:33:16 -060044ENTRYPOINT ["/usr/bin/dumb-init", "--"]
45
Khen Nursimulu68b9be32016-10-25 11:57:04 -040046# Exposing process and default entry point
alshabib06b449c2017-01-15 17:33:16 -060047CMD ["dumb-init", "python", "ofagent/ofagent/main.py"]