blob: 5500156d05fd2319e0c6fdc2342023e10f724ae0 [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
Matt Jeanneret877b5c22019-07-03 11:09:50 -040050ARG org_label_schema_version=unknown
51ARG org_label_schema_vcs_url=unknown
52ARG org_label_schema_vcs_ref=unknown
53ARG org_label_schema_build_date=unknown
54ARG org_opencord_vcs_commit_date=unknown
55ARG org_opencord_vcs_dirty=unknown
56
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040057# Build
David K. Bainbridgef430cd52019-05-28 15:00:35 -070058RUN cd afrouter && go build --tags integration -o /build/afrouter \
59 -ldflags \
60 "-X github.com/opencord/voltha-go/common/version.version=$org_label_schema_version \
61 -X github.com/opencord/voltha-go/common/version.vcsRef=$org_label_schema_vcs_ref \
62 -X github.com/opencord/voltha-go/common/version.vcsDirty=$org_opencord_vcs_dirty \
63 -X github.com/opencord/voltha-go/common/version.goVersion=$(go version 2>&1 | sed -E 's/.*go([0-9]+\.[0-9]+\.[0-9]+).*/\1/g') \
64 -X github.com/opencord/voltha-go/common/version.os=$(go env GOHOSTOS) \
65 -X github.com/opencord/voltha-go/common/version.arch=$(go env GOHOSTARCH) \
66 -X github.com/opencord/voltha-go/common/version.buildTime=$org_label_schema_build_date"
67
68RUN cd tests/afrouter && go build --tags integration -o /build/afrouterTest \
69 -ldflags \
70 "-X github.com/opencord/voltha-go/common/version.version=$org_label_schema_version \
71 -X github.com/opencord/voltha-go/common/version.vcsRef=$org_label_schema_vcs_ref \
72 -X github.com/opencord/voltha-go/common/version.vcsDirty=$org_opencord_vcs_dirty \
73 -X github.com/opencord/voltha-go/common/version.goVersion=$(go version 2>&1 | sed -E 's/.*go([0-9]+\.[0-9]+\.[0-9]+).*/\1/g') \
74 -X github.com/opencord/voltha-go/common/version.os=$(uname -s | tr A-Z a-z) \
75 -X github.com/opencord/voltha-go/common/version.arch=$(uname -m | tr A-Z a-z) \
76 -X github.com/opencord/voltha-go/common/version.buildTime=$org_label_schema_build_date"
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040077
78# Run tests
79RUN cd /build/tests/suites && /build/afrouterTest -config main.json -logLevel 1
80
81# -------------
82# Image creation stage
83
84FROM alpine:3.9.4
85
86# Set the working directory
87WORKDIR /app
88
89# Copy required files
90COPY --from=build-env /build/afrouter /app/tests/
91COPY --from=build-env /build/afrouterTest /app/tests/
92COPY --from=build-env /build/tests/suites/arouter.json /app/
93COPY --from=build-env /build/tests/suites/voltha.pb /app/tests/
94COPY --from=build-env /build/tests /app/tests/
95COPY --from=build-env /src/tests /app/tests/
96
97CMD tests/runAll tests
98
99# Label image
100ARG org_label_schema_version=unknown
101ARG org_label_schema_vcs_url=unknown
102ARG org_label_schema_vcs_ref=unknown
103ARG org_label_schema_build_date=unknown
104ARG org_opencord_vcs_commit_date=unknown
Kent Hagermanf4a3aab2019-05-22 14:42:34 -0400105ARG org_opencord_vcs_dirty=unknown
Matt Jeanneret2e3051a2019-05-11 15:01:46 -0400106
107LABEL org.label-schema.schema-version=1.0 \
108 org.label-schema.name=afroutertest \
109 org.label-schema.version=$org_label_schema_version \
110 org.label-schema.vcs-url=$org_label_schema_vcs_url \
111 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
112 org.label-schema.build-date=$org_label_schema_build_date \
Kent Hagermanf4a3aab2019-05-22 14:42:34 -0400113 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
114 org.opencord.vcs-dirty=$org_opencord_vcs_dirty