Zack Williams | 0081e1f | 2018-07-06 13:10:39 -0700 | [diff] [blame] | 1 | # Copyright 2018-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 | |
| 15 | # xosproject/tosca-loader |
| 16 | |
Zack Williams | 6bb2cfe | 2019-03-27 15:01:45 -0700 | [diff] [blame] | 17 | FROM alpine:3.9.2 |
Zack Williams | 0081e1f | 2018-07-06 13:10:39 -0700 | [diff] [blame] | 18 | |
Zack Williams | 6bb2cfe | 2019-03-27 15:01:45 -0700 | [diff] [blame] | 19 | RUN apk add --no-cache httpie |
Zack Williams | 0081e1f | 2018-07-06 13:10:39 -0700 | [diff] [blame] | 20 | |
| 21 | COPY tosca-loader.sh /usr/local/bin/tosca-loader.sh |
| 22 | |
| 23 | # Label image |
Zack Williams | 0081e1f | 2018-07-06 13:10:39 -0700 | [diff] [blame] | 24 | ARG org_label_schema_version=unknown |
| 25 | ARG org_label_schema_vcs_url=unknown |
| 26 | ARG org_label_schema_vcs_ref=unknown |
| 27 | ARG org_label_schema_build_date=unknown |
| 28 | ARG org_opencord_vcs_commit_date=unknown |
| 29 | |
Zack Williams | 6bb2cfe | 2019-03-27 15:01:45 -0700 | [diff] [blame] | 30 | LABEL org.label-schema.schema-version=1.0 \ |
| 31 | org.label-schema.name=tosca-loader \ |
Zack Williams | 0081e1f | 2018-07-06 13:10:39 -0700 | [diff] [blame] | 32 | org.label-schema.version=$org_label_schema_version \ |
| 33 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 34 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 35 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 36 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date |
| 37 | |
| 38 | CMD [ "/bin/sh", "/usr/local/bin/tosca-loader.sh" ] |