blob: 48b4728ec4d311f9e09ed1aed6b6ab2a6a1d6608 [file] [log] [blame]
Stephane Barbarie6e1bd502018-11-05 22:44:45 -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.
14ARG TAG=latest
15ARG REGISTRY=
16ARG REPOSITORY=
17
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 /ofagent && touch /ofagent/__init__.py
37ENV PYTHONPATH=/ofagent
38COPY common /ofagent/common
39COPY ofagent /ofagent/ofagent
40COPY pki /ofagent/pki
41
42ENTRYPOINT ["/usr/bin/dumb-init", "--"]
43
44# Exposing process and default entry point
45CMD ["dumb-init", "python", "ofagent/ofagent/main.py"]