Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
Zack Williams | 52986b2 | 2017-04-19 16:28:25 -0700 | [diff] [blame] | 17 | # xosproject/chameleon |
Andy Bavier | 635dfa1 | 2017-05-03 11:37:20 -0700 | [diff] [blame] | 18 | FROM xosproject/xos-base:candidate |
Scott Baker | 85d614f | 2017-02-01 14:30:40 -0800 | [diff] [blame] | 19 | |
Zack Williams | a7fec78 | 2017-04-27 20:18:19 -0700 | [diff] [blame] | 20 | # xos-base already has protoc and dependencies installed |
| 21 | |
| 22 | # Bundle app source |
| 23 | RUN mkdir /chameleon && touch /chameleon/__init__.py |
| 24 | ENV PYTHONPATH=/chameleon |
| 25 | COPY tmp.chameleon /chameleon/chameleon |
| 26 | |
| 27 | # Build the protos |
Zack Williams | ffc9b21 | 2018-03-22 17:25:33 -0700 | [diff] [blame^] | 28 | RUN pip install docker==3.1.4 klein==17.10.0 fluent-logger==0.9.2 \ |
| 29 | && chdir chameleon/chameleon/protos \ |
| 30 | && VOLTHA_BASE=anything make |
Scott Baker | 85d614f | 2017-02-01 14:30:40 -0800 | [diff] [blame] | 31 | |
Zack Williams | 52986b2 | 2017-04-19 16:28:25 -0700 | [diff] [blame] | 32 | # Label image |
| 33 | ARG org_label_schema_schema_version=1.0 |
| 34 | ARG org_label_schema_name=chameleon |
| 35 | ARG org_label_schema_version=unknown |
| 36 | ARG org_label_schema_vcs_url=unknown |
| 37 | ARG org_label_schema_vcs_ref=unknown |
| 38 | ARG org_label_schema_build_date=unknown |
| 39 | ARG org_opencord_vcs_commit_date=unknown |
| 40 | ARG org_opencord_component_chameleon_version=unknown |
| 41 | ARG org_opencord_component_chameleon_vcs_url=unknown |
| 42 | ARG org_opencord_component_chameleon_vcs_ref=unknown |
| 43 | |
| 44 | LABEL org.label-schema.schema-version=$org_label_schema_schema_version \ |
| 45 | org.label-schema.name=$org_label_schema_name \ |
| 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 \ |
| 51 | org.opencord.component.chameleon.version=$org_opencord_component_chameleon_version \ |
| 52 | org.opencord.component.chameleon.vcs-url=$org_opencord_component_chameleon_vcs_url \ |
| 53 | org.opencord.component.chameleon.vcs-ref=$org_opencord_component_chameleon_vcs_ref |
| 54 | |
Scott Baker | 85d614f | 2017-02-01 14:30:40 -0800 | [diff] [blame] | 55 | # Exposing process and default entry point |
| 56 | CMD ["python", "chameleon/chameleon/main.py"] |
Zack Williams | a7fec78 | 2017-04-27 20:18:19 -0700 | [diff] [blame] | 57 | |