blob: 74d462e401fa5ef9500479a6c014b2760c0699da [file] [log] [blame]
Jonathan Hart93956f52017-08-22 13:12:42 -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
David K. Bainbridge0a7cdbb2017-07-14 11:36:13 -070016FROM golang:1.7-alpine as builder
17MAINTAINER Open Networking Laboratory <info@onlab.us>
18
19WORKDIR /go
20ADD . /go/src/gerrit.opencord.org/maas/switchq
21RUN go build -o /build/entry-point gerrit.opencord.org/maas/switchq
22
David K. Bainbridge528b3182017-01-23 08:51:59 -080023FROM alpine:3.5
24MAINTAINER Open Networking Laboratory <info@onlab.us>
25
David K. Bainbridge528b3182017-01-23 08:51:59 -080026COPY vendors.json /switchq/vendors.json
David K. Bainbridge0a7cdbb2017-07-14 11:36:13 -070027COPY --from=builder /build/entry-point /service/entry-point
David K. Bainbridge528b3182017-01-23 08:51:59 -080028
29LABEL org.label-schema.name="switchq" \
30 org.label-schema.description="Provides fabric switch discovery and provisioning" \
31 org.label-schema.vcs-url="https://gerrit.opencord.org/maas" \
32 org.label-schema.vendor="Open Networking Laboratory" \
33 org.label-schema.schema-version="1.0"
34
35WORKDIR /service
36ENTRYPOINT ["/service/entry-point"]