Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 1 | # Copyright 2018 the original author or authors. |
| 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 | |
| 16 | # Download and copy the specified onos apps |
Matt Jeanneret | 16d972a | 2019-05-21 05:43:09 -0400 | [diff] [blame] | 17 | FROM maven:3.6.1-jdk-8-alpine as download |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 18 | |
| 19 | # The ENV settings must be replicated below as they are not shared between stages |
| 20 | ENV DOWNLOAD_ROOT=/download |
| 21 | RUN mkdir -p ${DOWNLOAD_ROOT} |
| 22 | WORKDIR ${DOWNLOAD_ROOT} |
| 23 | COPY mvn_settings.* ${DOWNLOAD_ROOT}/ |
| 24 | RUN ./mvn_settings.sh |
| 25 | ADD dependencies.xml . |
| 26 | |
| 27 | ARG LOCAL_ONOSAPPS |
| 28 | COPY local_imports/ /local_imports/ |
| 29 | RUN if [ -n "$LOCAL_ONOSAPPS" ] ; then \ |
| 30 | cp /local_imports/oar/* ${DOWNLOAD_ROOT}/ ; \ |
| 31 | else \ |
| 32 | mvn dependency:copy -Dmdep.useBaseVersion=true -DoutputDirectory=${DOWNLOAD_ROOT} -Dsilent=true -f dependencies.xml -s mvn_settings.xml ; \ |
| 33 | fi |
| 34 | |
| 35 | |
| 36 | # Unpack and install specific apps from download stage |
| 37 | FROM onosproject/onos:1.13.5 as install |
| 38 | |
| 39 | # The ENV settings must be replicated below as they are not shared between stages |
| 40 | ENV ONOS=/root/onos |
| 41 | ENV KARAF_VERSION=3.0.8 |
| 42 | ENV KARAF_ROOT=${ONOS}/apache-karaf-${KARAF_VERSION} |
| 43 | ENV APPS_ROOT=${ONOS}/apps |
| 44 | ENV KARAF_M2=${KARAF_ROOT}/system |
| 45 | ENV DOWNLOAD_ROOT=/download |
| 46 | ENV APP_INSTALL_ROOT=/expand |
| 47 | |
| 48 | # Copy the downloaded artifact to the install stage container |
| 49 | COPY --from=download ${DOWNLOAD_ROOT} ${DOWNLOAD_ROOT} |
| 50 | |
| 51 | # Install the applications |
| 52 | COPY app-install.sh ./app-install.sh |
| 53 | RUN chmod 755 ./app-install.sh |
| 54 | RUN ./app-install.sh |
| 55 | |
| 56 | |
| 57 | # Create the final image coping over the installed applications from the install stage |
| 58 | FROM onosproject/onos:1.13.5 |
| 59 | |
| 60 | # The ENV settings must be replicated below as they are not shared between stages |
| 61 | ENV ONOS=/root/onos |
| 62 | ENV KARAF_VERSION=3.0.8 |
| 63 | ENV KARAF_ROOT=${ONOS}/apache-karaf-${KARAF_VERSION} |
| 64 | ENV KARAF_M2=${KARAF_ROOT}/system |
| 65 | ENV APPS_ROOT=${ONOS}/apps |
| 66 | |
| 67 | COPY --from=install ${KARAF_M2}/ ${KARAF_M2}/ |
| 68 | RUN echo "${KARAF_M2} ${APPS_ROOT}" |
| 69 | COPY --from=install ${APPS_ROOT}/ ${APPS_ROOT}/ |
| 70 | COPY network-cfg.json $KARAF_ROOT/../config/network-cfg.json |
| 71 | |
| 72 | RUN touch $ONOS/apps/org.onosproject.hostprovider/active |
| 73 | RUN touch $ONOS/apps/org.onosproject.openflow-base/active |
| 74 | |
| 75 | # Label image |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 76 | ARG org_label_schema_version=unknown |
| 77 | ARG org_label_schema_vcs_url=unknown |
| 78 | ARG org_label_schema_vcs_ref=unknown |
| 79 | ARG org_label_schema_build_date=unknown |
| 80 | ARG org_opencord_vcs_commit_date=unknown |
| 81 | |
| 82 | LABEL org.label-schema.schema-version=1.0 \ |
Matt Jeanneret | d8c3794 | 2019-05-14 18:06:50 -0400 | [diff] [blame] | 83 | org.label-schema.name=voltha-onos \ |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 84 | org.label-schema.version=$org_label_schema_version \ |
| 85 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 86 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 87 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 88 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date |