blob: cfc8850e4fd25dd2a97b2caffc3fc30d069dacfc [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/cord-provisioner
21RUN go build -o /build/entry-point gerrit.opencord.org/maas/cord-provisioner
22
Andy Bavierb207a192017-09-07 15:13:52 -070023FROM alpine:3.6
David K. Bainbridge528b3182017-01-23 08:51:59 -080024MAINTAINER Open Networking Laboratory <info@onlab.us>
25
26# Base image information borrowed by official golang wheezy Dockerfile
27RUN apk --update add ansible openssh-client sshpass curl py2-netaddr rsync
David K. Bainbridge528b3182017-01-23 08:51:59 -080028COPY ssh-config /root/.ssh/config
David K. Bainbridge9a3b6cf2017-07-19 10:19:47 -070029RUN chmod 700 /root/.ssh && chmod 600 /root/.ssh/config
David K. Bainbridgea75d3702017-05-19 14:11:59 -070030COPY ansible.cfg /etc/ansible/ansible.cfg
David K. Bainbridge0a7cdbb2017-07-14 11:36:13 -070031COPY --from=builder /build/entry-point /service/entry-point
David K. Bainbridge528b3182017-01-23 08:51:59 -080032
33LABEL org.label-schema.name="provisioner" \
34 org.label-schema.description="Provides provisioning of compute and switch nodes for CORD" \
35 org.label-schema.vcs-url="https://gerrit.opencord.org/maas" \
36 org.label-schema.vendor="Open Networking Laboratory" \
37 org.label-schema.schema-version="1.0"
38
39WORKDIR /service
40ENTRYPOINT ["/service/entry-point"]