blob: d0d3e36fce63750cf7c00fc77fa9f248612d3dd7 [file] [log] [blame]
khenaidoob9203542018-09-17 22:56:37 -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.
14ARG TAG=latest
15ARG REGISTRY=
16ARG REPOSITORY=
17
18FROM ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} as protos
19FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG}
20
21MAINTAINER Voltha Community <info@opennetworking.org>
22
23# Bundle app source
24RUN mkdir /adapters && touch /adapters/__init__.py
25ENV PYTHONPATH=/adapters
khenaidoo9a468962018-09-19 15:33:13 -040026COPY common /adapters/adapters/common
27COPY kafka /adapters/adapters/kafka
28COPY ./*.py /adapters/adapters/
khenaidoob9203542018-09-17 22:56:37 -040029#COPY pki /voltha/pki
khenaidoo9a468962018-09-19 15:33:13 -040030COPY ponsim_onu /adapters/adapters/ponsim_onu
khenaidoob9203542018-09-17 22:56:37 -040031RUN touch /adapters/adapters/__init__.py
32
33
34# Copy in the generated GRPC proto code
35COPY --from=protos /protos/voltha /adapters/adapters/protos
36COPY --from=protos /protos/google/api /adapters/adapters/protos/third_party/google/api
khenaidoo9a468962018-09-19 15:33:13 -040037COPY protos/third_party/__init__.py /adapters/adapters/protos/third_party
khenaidoob9203542018-09-17 22:56:37 -040038RUN touch /adapters/adapters/protos/__init__.py
39RUN touch /adapters/adapters/protos/third_party/google/__init__.py
40
41# Exposing process and default entry point
42# CMD ["python", "/adapters/ponsim_onu/main.py"]