blob: 90ae1e1e3fab93d154cbb44041eaf0e930697e59 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001# Copyright 2017-present Open Networking Foundation
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
Zack Williams52986b22017-04-19 16:28:25 -070015# xosproject/chameleon
Matteo Scandolo12651d72019-02-21 15:15:29 -080016
Scott Baker63c27ba2019-03-01 16:06:15 -080017FROM xosproject/xos-base:2.2.3
Scott Baker85d614f2017-02-01 14:30:40 -080018
Zack Williamsa7fec782017-04-27 20:18:19 -070019# xos-base already has protoc and dependencies installed
20
21# Bundle app source
22RUN mkdir /chameleon && touch /chameleon/__init__.py
23ENV PYTHONPATH=/chameleon
24COPY tmp.chameleon /chameleon/chameleon
25
26# Build the protos
Zack Williamsffc9b212018-03-22 17:25:33 -070027RUN pip install docker==3.1.4 klein==17.10.0 fluent-logger==0.9.2 \
28 && chdir chameleon/chameleon/protos \
29 && VOLTHA_BASE=anything make
Scott Baker85d614f2017-02-01 14:30:40 -080030
Zack Williams52986b22017-04-19 16:28:25 -070031# Label image
32ARG org_label_schema_schema_version=1.0
33ARG org_label_schema_name=chameleon
34ARG org_label_schema_version=unknown
35ARG org_label_schema_vcs_url=unknown
36ARG org_label_schema_vcs_ref=unknown
37ARG org_label_schema_build_date=unknown
38ARG org_opencord_vcs_commit_date=unknown
39ARG org_opencord_component_chameleon_version=unknown
40ARG org_opencord_component_chameleon_vcs_url=unknown
41ARG org_opencord_component_chameleon_vcs_ref=unknown
42
43LABEL org.label-schema.schema-version=$org_label_schema_schema_version \
44 org.label-schema.name=$org_label_schema_name \
45 org.label-schema.version=$org_label_schema_version \
46 org.label-schema.vcs-url=$org_label_schema_vcs_url \
47 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
48 org.label-schema.build-date=$org_label_schema_build_date \
49 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
50 org.opencord.component.chameleon.version=$org_opencord_component_chameleon_version \
51 org.opencord.component.chameleon.vcs-url=$org_opencord_component_chameleon_vcs_url \
52 org.opencord.component.chameleon.vcs-ref=$org_opencord_component_chameleon_vcs_ref
53
Scott Baker85d614f2017-02-01 14:30:40 -080054# Exposing process and default entry point
Zack Williams461202b2018-05-28 15:10:14 -070055CMD ["python", "/chameleon/chameleon/main.py"]