Jonathan Hart | 93956f5 | 2017-08-22 13:12:42 -0700 | [diff] [blame] | 1 | |
| 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. Bainbridge | 0a7cdbb | 2017-07-14 11:36:13 -0700 | [diff] [blame] | 16 | FROM golang:1.7-alpine as builder |
| 17 | MAINTAINER Open Networking Laboratory <info@onlab.us> |
| 18 | |
| 19 | WORKDIR /go |
| 20 | ADD . /go/src/gerrit.opencord.org/maas/cord-provisioner |
| 21 | RUN go build -o /build/entry-point gerrit.opencord.org/maas/cord-provisioner |
| 22 | |
Andy Bavier | b207a19 | 2017-09-07 15:13:52 -0700 | [diff] [blame] | 23 | FROM alpine:3.6 |
David K. Bainbridge | 528b318 | 2017-01-23 08:51:59 -0800 | [diff] [blame] | 24 | MAINTAINER Open Networking Laboratory <info@onlab.us> |
| 25 | |
| 26 | # Base image information borrowed by official golang wheezy Dockerfile |
| 27 | RUN apk --update add ansible openssh-client sshpass curl py2-netaddr rsync |
David K. Bainbridge | 528b318 | 2017-01-23 08:51:59 -0800 | [diff] [blame] | 28 | COPY ssh-config /root/.ssh/config |
David K. Bainbridge | 9a3b6cf | 2017-07-19 10:19:47 -0700 | [diff] [blame] | 29 | RUN chmod 700 /root/.ssh && chmod 600 /root/.ssh/config |
David K. Bainbridge | a75d370 | 2017-05-19 14:11:59 -0700 | [diff] [blame] | 30 | COPY ansible.cfg /etc/ansible/ansible.cfg |
David K. Bainbridge | 0a7cdbb | 2017-07-14 11:36:13 -0700 | [diff] [blame] | 31 | COPY --from=builder /build/entry-point /service/entry-point |
David K. Bainbridge | 528b318 | 2017-01-23 08:51:59 -0800 | [diff] [blame] | 32 | |
| 33 | LABEL 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 | |
| 39 | WORKDIR /service |
| 40 | ENTRYPOINT ["/service/entry-point"] |