blob: a977bc73f5f232154503cfa1aafd6f6355e43bb2 [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001## Copyright 2017 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.
14FROM golang:1.8-alpine as builder
15MAINTAINER Open Networking Foundation <info@onlab.us>
16
17WORKDIR /go
18ADD . /go/src/gerrit.opencord.org/unum
19RUN go build -o /build/entry-point gerrit.opencord.org/unum
20
21FROM alpine:3.6
22MAINTAINER Open Networking Foundation <info@onlab.us>
23
24COPY --from=builder /build/entry-point /service/entry-point
25
26LABEL org.label-schema.description="Provides cluster management for ONOS" \
27 org.label-schema.schema-version="1.0" \
28 org.label-schema.url="http://opencord.org" \
29 org.label-schema.vcs-url="https://gerrit.opencord.org/#/admin/projects/voltha" \
30 org.label-schema.vendor="Open Networking Foundation" \
31 org.label-schema.version="1.0.0" \
32 org.label-schema.name="unum"
33
34WORKDIR /service
35ENTRYPOINT ["/service/entry-point"]
36