David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame] | 1 | # Copyright 2018 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 | # |
| 15 | ARG TAG=latest |
| 16 | ARG REGISTRY= |
| 17 | ARG REPOSITORY= |
| 18 | |
| 19 | FROM ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} as protos |
| 20 | FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG} |
| 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/common |
| 27 | COPY voltha /voltha/voltha |
| 28 | COPY pki /voltha/pki |
| 29 | |
| 30 | # Copy in the generated GRPC proto code |
| 31 | COPY --from=protos /protos/voltha /voltha/voltha/protos |
| 32 | COPY --from=protos /protos/google/api /voltha/voltha/protos/third_party/google/api |
| 33 | COPY --from=protos /protos/asfvolt16_olt /voltha/voltha/adapters/asfvolt16_olt/protos |
| 34 | |
| 35 | # Exposing process and default entry point |
| 36 | # EXPOSE 8000 |
| 37 | CMD ["python", "voltha/voltha/main.py"] |