William Kurkian | 6f436d0 | 2019-02-06 16:25:01 -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-openolt-protos:${TAG} as openolt_protos |
| 20 | FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG} |
| 21 | |
| 22 | MAINTAINER Voltha Community <info@opennetworking.org> |
| 23 | |
| 24 | # Bundle app source |
| 25 | RUN mkdir /voltha && touch /voltha/__init__.py |
| 26 | ENV PYTHONPATH=/voltha |
William Kurkian | fefd464 | 2019-02-07 15:30:03 -0500 | [diff] [blame^] | 27 | COPY common /voltha/voltha/common/ |
| 28 | COPY common /voltha/common/ |
| 29 | COPY adapters/common /voltha/common/ |
| 30 | COPY adapters/common /voltha/voltha/adapters/common/ |
| 31 | COPY adapters/kafka /voltha/voltha/adapters/kafka |
| 32 | COPY adapters/*.py /voltha/voltha/adapters/ |
| 33 | COPY adapters/openolt /voltha/voltha/adapters/openolt |
| 34 | COPY adapters/extensions /voltha/voltha/extensions |
| 35 | COPY core /voltha/voltha/core/ |
| 36 | COPY common/utils/registry.py /voltha/voltha/ |
| 37 | RUN touch /voltha/voltha/__init__.py |
| 38 | RUN touch /voltha/voltha/adapters/__init__.py |
| 39 | |
| 40 | #two copies of the libraries for now to support various import |
| 41 | #This can be simiplified once the common libraries are unified in one repo |
William Kurkian | 6f436d0 | 2019-02-06 16:25:01 -0500 | [diff] [blame] | 42 | COPY common /voltha/python/common/ |
| 43 | COPY adapters/common /voltha/python/adapters/common/ |
| 44 | COPY adapters/kafka /voltha/python/adapters/kafka |
| 45 | COPY adapters/*.py /voltha/python/adapters/ |
| 46 | COPY adapters/openolt /voltha/python/adapters/openolt |
William Kurkian | fefd464 | 2019-02-07 15:30:03 -0500 | [diff] [blame^] | 47 | COPY adapters/extensions /voltha/python/extensions |
William Kurkian | 6f436d0 | 2019-02-06 16:25:01 -0500 | [diff] [blame] | 48 | RUN touch /voltha/python/__init__.py |
| 49 | RUN touch /voltha/python/adapters/__init__.py |
| 50 | |
| 51 | # Copy in the generated GRPC proto code |
William Kurkian | fefd464 | 2019-02-07 15:30:03 -0500 | [diff] [blame^] | 52 | COPY --from=protos /protos/voltha /voltha/voltha/protos |
| 53 | COPY --from=protos /protos/google/api /voltha/voltha/protos/third_party/google/api |
| 54 | COPY --from=openolt_protos /protos/voltha /voltha/voltha/protos |
| 55 | COPY protos/third_party/__init__.py /voltha/voltha/protos/third_party |
| 56 | COPY --from=openolt_protos /protos/voltha /voltha/voltha/adapters/openolt/protos/ |
| 57 | RUN touch /voltha/voltha/protos/__init__.py |
| 58 | RUN touch /voltha/voltha/protos/third_party/google/__init__.py |
| 59 | RUN touch /voltha/voltha/adapters/openolt/protos/__init__.py |
| 60 | |
| 61 | # Copy in the generated GRPC proto code |
William Kurkian | 6f436d0 | 2019-02-06 16:25:01 -0500 | [diff] [blame] | 62 | COPY --from=protos /protos/voltha /voltha/python/protos |
| 63 | COPY --from=protos /protos/google/api /voltha/python/protos/third_party/google/api |
| 64 | COPY --from=openolt_protos /protos/voltha /voltha/python/protos |
| 65 | COPY protos/third_party/__init__.py /voltha/python/protos/third_party |
| 66 | RUN touch /voltha/python/protos/__init__.py |
| 67 | RUN touch /voltha/python/protos/third_party/google/__init__.py |
| 68 | |
| 69 | # Exposing process and default entry point |
| 70 | # CMD ["python", "/voltha/python/adapters/openolt/main.py"] |