| 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/xos-test |
| Andy Bavier | 175cfaf | 2017-03-13 18:09:21 -0400 | [diff] [blame] | 18 | FROM xosproject/xos:candidate |
| Matteo Scandolo | a665842 | 2016-04-06 14:44:56 -0700 | [diff] [blame] | 19 | |
| Zack Williams | a7fec78 | 2017-04-27 20:18:19 -0700 | [diff] [blame] | 20 | # install nodejs |
| 21 | COPY containers/xos/nodesource.gpg.key /tmp/nodesource.gpg.key |
| 22 | |
| 23 | RUN apt-key add /tmp/nodesource.gpg.key \ |
| 24 | && echo "deb https://deb.nodesource.com/node_4.x trusty main" \ |
| 25 | > /etc/apt/sources.list.d/nodesource.list \ |
| 26 | && apt-get update \ |
| 27 | && apt-get install -y --force-yes \ |
| 28 | nodejs \ |
| 29 | && rm -rf /var/lib/apt/lists/* \ |
| 30 | && node -v \ |
| 31 | && pip install selenium \ |
| 32 | && npm install -g phantomjs |
| 33 | |
| Zack Williams | 52986b2 | 2017-04-19 16:28:25 -0700 | [diff] [blame] | 34 | # Label image |
| 35 | ARG org_label_schema_schema_version=1.0 |
| 36 | ARG org_label_schema_name=xos-test |
| 37 | ARG org_label_schema_version=unknown |
| 38 | ARG org_label_schema_vcs_url=unknown |
| 39 | ARG org_label_schema_vcs_ref=unknown |
| 40 | ARG org_label_schema_build_date=unknown |
| 41 | ARG org_opencord_vcs_commit_date=unknown |
| 42 | |
| 43 | LABEL 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 | |