blob: c1fc607459775ed45d40274de752b56826840fa0 [file] [log] [blame]
William Kurkian6f436d02019-02-06 16:25:01 -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-protos:${TAG} as protos
19FROM ${REGISTRY}${REPOSITORY}voltha-openolt-protos:${TAG} as openolt_protos
20FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG}
21
22MAINTAINER Voltha Community <info@opennetworking.org>
23
24# Bundle app source
25RUN mkdir /voltha && touch /voltha/__init__.py
26ENV PYTHONPATH=/voltha
27COPY common /voltha/python/common/
28COPY adapters/common /voltha/python/adapters/common/
29COPY adapters/kafka /voltha/python/adapters/kafka
30COPY adapters/*.py /voltha/python/adapters/
31COPY adapters/openolt /voltha/python/adapters/openolt
32RUN touch /voltha/python/__init__.py
33RUN touch /voltha/python/adapters/__init__.py
34
35# Copy in the generated GRPC proto code
36COPY --from=protos /protos/voltha /voltha/python/protos
37COPY --from=protos /protos/google/api /voltha/python/protos/third_party/google/api
38COPY --from=openolt_protos /protos/voltha /voltha/python/protos
39COPY protos/third_party/__init__.py /voltha/python/protos/third_party
40RUN touch /voltha/python/protos/__init__.py
41RUN touch /voltha/python/protos/third_party/google/__init__.py
42
43# Exposing process and default entry point
44# CMD ["python", "/voltha/python/adapters/openolt/main.py"]