blob: 0e1d0fc51cf55f922e79bc6483dc394ed3190862 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001
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 Williams52986b22017-04-19 16:28:25 -070017# xosproject/xos-corebuilder
Matteo Scandolo97521b92017-07-12 16:24:36 -070018FROM xosproject/xos-libraries:candidate
Scott Bakereb201f22017-04-10 11:47:58 -070019
Zack Williams52986b22017-04-19 16:28:25 -070020# Label image
21ARG org_label_schema_schema_version=1.0
22ARG org_label_schema_name=xos-corebuilder
23ARG org_label_schema_version=unknown
24ARG org_label_schema_vcs_url=unknown
25ARG org_label_schema_vcs_ref=unknown
26ARG org_label_schema_build_date=unknown
27ARG org_opencord_vcs_commit_date=unknown
Scott Bakereb201f22017-04-10 11:47:58 -070028
Zack Williams52986b22017-04-19 16:28:25 -070029LABEL org.label-schema.schema-version=$org_label_schema_schema_version \
30 org.label-schema.name=$org_label_schema_name \
31 org.label-schema.version=$org_label_schema_version \
32 org.label-schema.vcs-url=$org_label_schema_vcs_url \
33 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
34 org.label-schema.build-date=$org_label_schema_build_date \
35 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date
Scott Bakereb201f22017-04-10 11:47:58 -070036
Matteo Scandolo67654fa2017-06-09 09:33:17 -070037ENV HOME /root
38WORKDIR /opt/xos/tools/corebuilder
39
Matteo Scandolo67654fa2017-06-09 09:33:17 -070040# Install the corebuilder tools and the tosca custom_types that it needs
41ADD xos/tools/corebuilder /opt/xos/tools/corebuilder
42ADD xos/tosca/custom_types /opt/xos/tools/corebuilder/custom_types
43
Scott Bakereb201f22017-04-10 11:47:58 -070044ENTRYPOINT ["/usr/bin/python", "corebuilder.py"]
Matteo Scandolo67654fa2017-06-09 09:33:17 -070045# CMD sleep 86400
Scott Bakereb201f22017-04-10 11:47:58 -070046