blob: dc448ea894c4100bff5cb6612f8c9ddd41be8ffc [file] [log] [blame]
Matteo Scandolobea95272017-08-08 13:05:23 -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 Williams46c952d2017-07-17 11:16:26 -070017# Dockerfile for onos-apps maven repo
Andy Bavier25ebf0e2017-06-06 18:27:15 -040018
Zack Williams46c952d2017-07-17 11:16:26 -070019FROM maven:3-jdk-8 as maven
20COPY settings.xml /root/.m2/settings.xml
21COPY . /mavenwd
22WORKDIR /mavenwd/apps
Andy Bavierbcf36292017-08-31 12:50:09 -070023RUN mvn dependency:copy-dependencies -Dmdep.copyPom=false -Dmdep.useRepositoryLayout=true -DoutputDirectory=m2/repository -Dmdep.addParentPoms=false -Dtype=oar -DexcludeTypes=jar -Dsilent=true -f dependencies.xml
Andy Bavier25ebf0e2017-06-06 18:27:15 -040024
25FROM nginx
Zack Williams46c952d2017-07-17 11:16:26 -070026WORKDIR /usr/share/nginx/html
27COPY --from=maven /mavenwd/repository repository
Andy Bavier25ebf0e2017-06-06 18:27:15 -040028RUN chown nginx:nginx -R /usr/share/nginx/html/repository
29
Zack Williams46c952d2017-07-17 11:16:26 -070030# Label image
31ARG org_label_schema_schema_version=1.0
Zack Williamsf173e4f2019-08-30 17:15:24 -070032ARG org_label_schema_name=mavenrepo
Zack Williams46c952d2017-07-17 11:16:26 -070033ARG org_label_schema_version=unknown
34ARG org_label_schema_vcs_url=unknown
35ARG org_label_schema_vcs_ref=unknown
36ARG org_label_schema_build_date=unknown
37ARG org_opencord_vcs_commit_date=unknown
38
39LABEL org.label-schema.schema-version=$org_label_schema_schema_version \
40 org.label-schema.name=$org_label_schema_name \
41 org.label-schema.version=$org_label_schema_version \
42 org.label-schema.vcs-url=$org_label_schema_vcs_url \
43 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
44 org.label-schema.build-date=$org_label_schema_build_date \
45 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date