blob: 9c42a597fe0326d78ee1897eb15a4580b4a776bf [file] [log] [blame]
Matt Jeanneret18949ae2019-02-09 15:00:14 -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.
Matt Jeanneretee3fdfd2019-10-23 10:28:34 -040014FROM voltha/voltha-python-base:1.0.0
Matt Jeanneret134d9e82019-05-08 15:45:10 -040015
16# Install adapter requirements.
17COPY requirements.txt /tmp/requirements.txt
18RUN pip install -r /tmp/requirements.txt
19
20ARG LOCAL_PYVOLTHA
21ARG LOCAL_PROTOS
22COPY local_imports/ /local_imports/
23RUN if [ -n "$LOCAL_PYVOLTHA" ] ; then \
24 pip install /local_imports/pyvoltha/dist/*.tar.gz ; \
25fi
26
27RUN if [ -n "$LOCAL_PROTOS" ] ; then \
28 pip install /local_imports/voltha-protos/dist/*.tar.gz ; \
29fi
Matt Jeanneret18949ae2019-02-09 15:00:14 -050030
31# Bundle app source
32RUN mkdir /voltha && touch /voltha/__init__.py
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050033RUN mkdir /voltha/adapters && touch /voltha/adapters/__init__.py
Matt Jeanneret18949ae2019-02-09 15:00:14 -050034ENV PYTHONPATH=/voltha
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050035COPY adapters/brcm_openomci_onu /voltha/adapters/brcm_openomci_onu
Matt Jeanneret18949ae2019-02-09 15:00:14 -050036
Matt Jeanneret134d9e82019-05-08 15:45:10 -040037# Label image
38ARG org_label_schema_version=unknown
39ARG org_label_schema_vcs_url=unknown
40ARG org_label_schema_vcs_ref=unknown
41ARG org_label_schema_build_date=unknown
42ARG org_opencord_vcs_commit_date=unknown
Matt Jeanneret18949ae2019-02-09 15:00:14 -050043
Matt Jeanneret134d9e82019-05-08 15:45:10 -040044LABEL org.label-schema.schema-version=1.0 \
45 org.label-schema.name=voltha-openonu-adapter \
46 org.label-schema.version=$org_label_schema_version \
47 org.label-schema.vcs-url=$org_label_schema_vcs_url \
48 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
49 org.label-schema.build-date=$org_label_schema_build_date \
50 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date