blob: 57cc1136f32fea894bf2e3c8a54ab032d3c5b9ab [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
26COPY adapters/common /adapters/adapters/common
27COPY adapters/kafka /adapters/adapters/kafka
28COPY adapters/*.py /adapters/adapters/
29#COPY pki /voltha/pki
30COPY adapters/ponsim_onu /adapters/adapters/ponsim_onu
31RUN 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
37COPY adapters/protos/third_party/__init__.py /adapters/adapters/protos/third_party
38RUN 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"]