khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 1 | # 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. |
| 14 | ARG TAG=latest |
| 15 | ARG REGISTRY= |
| 16 | ARG REPOSITORY= |
| 17 | |
| 18 | FROM ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} as protos |
| 19 | FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG} |
| 20 | |
| 21 | MAINTAINER Voltha Community <info@opennetworking.org> |
| 22 | |
| 23 | # Bundle app source |
| 24 | RUN mkdir /voltha && touch /voltha/__init__.py |
| 25 | ENV PYTHONPATH=/voltha |
| 26 | COPY common /voltha/python/common/ |
| 27 | COPY adapters/common /voltha/python/adapters/common/ |
| 28 | COPY adapters/kafka /voltha/python/adapters/kafka |
| 29 | COPY adapters/*.py /voltha/python/adapters/ |
| 30 | COPY adapters/ponsim_olt /voltha/python/adapters/ponsim_olt |
| 31 | RUN touch /voltha/python/__init__.py |
| 32 | RUN touch /voltha/python/adapters/__init__.py |
| 33 | |
| 34 | # Copy in the generated GRPC proto code |
| 35 | COPY --from=protos /protos/voltha /voltha/python/protos |
| 36 | COPY --from=protos /protos/google/api /voltha/python/protos/third_party/google/api |
| 37 | COPY protos/third_party/__init__.py /voltha/python/protos/third_party |
| 38 | RUN touch /voltha/python/protos/__init__.py |
| 39 | RUN touch /voltha/python/protos/third_party/google/__init__.py |
| 40 | |
| 41 | # Exposing process and default entry point |
| 42 | # CMD ["python", "/voltha/python/adapters/ponsim_olt/main.py"] |