blob: 3f159d6a9d8a4e60f9ea1191f1ff2d3cffcb5900 [file] [log] [blame]
Matt Jeanneret2e3051a2019-05-11 15:01:46 -04001# Copyright 2016 the original author or authors.
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.
14
15# -------------
16# Build stage
17
18FROM golang:1.12-alpine3.9 AS build-env
19
20# Install required packages
21RUN apk add --no-cache wget git make build-base protobuf protobuf-dev
22
23# Prepare directory structure
24RUN ["mkdir", "-p", "/build"]
25RUN ["mkdir", "-p", "$GOPATH/src", "$GOPATH/pkg", "$GOPATH/bin"]
26RUN ["mkdir", "-p", "$GOPATH/src/github.com/opencord"]
27RUN ["mkdir", "-p", "$GOPATH/src/github.com/opencord/voltha-go"]
28
29WORKDIR $GOPATH/src/github.com/opencord/voltha-go
30
31# Copy common files.
32COPY common ./common
33COPY db ./db
34COPY kafka ./kafka
35COPY vendor ./vendor
36
37# Copy files
38COPY rw_core ./rw_core
39COPY afrouter ./afrouter
40COPY tests/afrouter ./tests/afrouter
41COPY tests/afrouter /build/tests
42
43# Copy proto files
44COPY vendor/ $GOPATH/src
45
46# Copy config and runtime protobuf needed for routing
47RUN cp afrouter/arouter.json /build/tests/suites/
48RUN cp vendor/github.com/opencord/voltha-protos/go/voltha.pb /build/tests/suites/
49
50# Build
51RUN cd afrouter && go build --tags integration -o /build/afrouter
52RUN cd tests/afrouter && go build --tags integration -o /build/afrouterTest
53
54# Run tests
55RUN cd /build/tests/suites && /build/afrouterTest -config main.json -logLevel 1
56
57# -------------
58# Image creation stage
59
60FROM alpine:3.9.4
61
62# Set the working directory
63WORKDIR /app
64
65# Copy required files
66COPY --from=build-env /build/afrouter /app/tests/
67COPY --from=build-env /build/afrouterTest /app/tests/
68COPY --from=build-env /build/tests/suites/arouter.json /app/
69COPY --from=build-env /build/tests/suites/voltha.pb /app/tests/
70COPY --from=build-env /build/tests /app/tests/
71COPY --from=build-env /src/tests /app/tests/
72
73CMD tests/runAll tests
74
75# Label image
76ARG org_label_schema_version=unknown
77ARG org_label_schema_vcs_url=unknown
78ARG org_label_schema_vcs_ref=unknown
79ARG org_label_schema_build_date=unknown
80ARG org_opencord_vcs_commit_date=unknown
81
82LABEL org.label-schema.schema-version=1.0 \
83 org.label-schema.name=afroutertest \
84 org.label-schema.version=$org_label_schema_version \
85 org.label-schema.vcs-url=$org_label_schema_vcs_url \
86 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
87 org.label-schema.build-date=$org_label_schema_build_date \
88 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date