blob: 814a5f94df7bdd524f9f7c10a47bf04b172221a7 [file] [log] [blame]
Brian O'Connor6a37ea92017-08-03 22:45:59 -07001## Copyright 2016 Open Networking Foundation
David K. Bainbridge528b3182017-01-23 08:51:59 -08002##
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.
David K. Bainbridge0a7cdbb2017-07-14 11:36:13 -070014FROM golang:1.7-alpine as builder
15MAINTAINER Open Networking Laboratory <info@onlab.us>
16
17WORKDIR /go
18ADD . /go/src/gerrit.opencord.org/maas/cord-provisioner
19RUN go build -o /build/entry-point gerrit.opencord.org/maas/cord-provisioner
20
David K. Bainbridge528b3182017-01-23 08:51:59 -080021FROM alpine:3.5
22MAINTAINER Open Networking Laboratory <info@onlab.us>
23
24# Base image information borrowed by official golang wheezy Dockerfile
25RUN apk --update add ansible openssh-client sshpass curl py2-netaddr rsync
David K. Bainbridge528b3182017-01-23 08:51:59 -080026COPY ssh-config /root/.ssh/config
David K. Bainbridge9a3b6cf2017-07-19 10:19:47 -070027RUN chmod 700 /root/.ssh && chmod 600 /root/.ssh/config
David K. Bainbridgea75d3702017-05-19 14:11:59 -070028COPY ansible.cfg /etc/ansible/ansible.cfg
David K. Bainbridge0a7cdbb2017-07-14 11:36:13 -070029COPY --from=builder /build/entry-point /service/entry-point
David K. Bainbridge528b3182017-01-23 08:51:59 -080030
31LABEL org.label-schema.name="provisioner" \
32 org.label-schema.description="Provides provisioning of compute and switch nodes for CORD" \
33 org.label-schema.vcs-url="https://gerrit.opencord.org/maas" \
34 org.label-schema.vendor="Open Networking Laboratory" \
35 org.label-schema.schema-version="1.0"
36
37WORKDIR /service
38ENTRYPOINT ["/service/entry-point"]