blob: c88e7064b97a015bfb7962be330510f80dc4c675 [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
David Bainbridge5f3619c2019-07-10 22:51:09 +000021RUN apk add --no-cache \
22 wget=1.20.3-r0 \
23 git=2.20.1-r0 \
24 make=4.2.1-r2 \
25 build-base=0.5-r1 \
26 protobuf=3.6.1-r1 \
27 protobuf-dev=3.6.1-r1
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040028
29# Prepare directory structure
David Bainbridge5f3619c2019-07-10 22:51:09 +000030RUN mkdir -p /build \
31 "$GOPATH/src/" "$GOPATH/pkg" "$GOPATH/bin" \
32 "$GOPATH/src/github.com/opencord" \
33 "$GOPATH/src/github.com/opencord/voltha-go"
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040034
35WORKDIR $GOPATH/src/github.com/opencord/voltha-go
36
37# Copy common files.
38COPY common ./common
39COPY db ./db
40COPY kafka ./kafka
41COPY vendor ./vendor
42
43# Copy files
44COPY rw_core ./rw_core
45COPY afrouter ./afrouter
46COPY tests/afrouter ./tests/afrouter
47COPY tests/afrouter /build/tests
48
49# Copy proto files
50COPY vendor/ $GOPATH/src
51
52# Copy config and runtime protobuf needed for routing
53RUN cp afrouter/arouter.json /build/tests/suites/
54RUN cp vendor/github.com/opencord/voltha-protos/go/voltha.pb /build/tests/suites/
55
Matt Jeanneret877b5c22019-07-03 11:09:50 -040056ARG org_label_schema_version=unknown
57ARG org_label_schema_vcs_url=unknown
58ARG org_label_schema_vcs_ref=unknown
59ARG org_label_schema_build_date=unknown
60ARG org_opencord_vcs_commit_date=unknown
61ARG org_opencord_vcs_dirty=unknown
62
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040063# Build
David Bainbridge5f3619c2019-07-10 22:51:09 +000064WORKDIR $GOPATH/src/github.com/opencord/voltha-go/afrouter
65SHELL ["/bin/ash", "-o", "pipefail", "-c"]
66RUN go build --tags integration -o /build/afrouter \
David K. Bainbridgef430cd52019-05-28 15:00:35 -070067 -ldflags \
68 "-X github.com/opencord/voltha-go/common/version.version=$org_label_schema_version \
69 -X github.com/opencord/voltha-go/common/version.vcsRef=$org_label_schema_vcs_ref \
70 -X github.com/opencord/voltha-go/common/version.vcsDirty=$org_opencord_vcs_dirty \
71 -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') \
72 -X github.com/opencord/voltha-go/common/version.os=$(go env GOHOSTOS) \
73 -X github.com/opencord/voltha-go/common/version.arch=$(go env GOHOSTARCH) \
74 -X github.com/opencord/voltha-go/common/version.buildTime=$org_label_schema_build_date"
75
David Bainbridge5f3619c2019-07-10 22:51:09 +000076WORKDIR $GOPATH/src/github.com/opencord/voltha-go/tests./afrouter
77RUN go build --tags integration -o /build/afrouterTest \
David K. Bainbridgef430cd52019-05-28 15:00:35 -070078 -ldflags \
79 "-X github.com/opencord/voltha-go/common/version.version=$org_label_schema_version \
80 -X github.com/opencord/voltha-go/common/version.vcsRef=$org_label_schema_vcs_ref \
81 -X github.com/opencord/voltha-go/common/version.vcsDirty=$org_opencord_vcs_dirty \
82 -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') \
David Bainbridge5f3619c2019-07-10 22:51:09 +000083 -X github.com/opencord/voltha-go/common/version.os=$(uname -s | tr "[:upper:]" "[:lower:]") \
84 -X github.com/opencord/voltha-go/common/version.arch=$(uname -m | tr "[:upper:]" "[:lower:]") \
David K. Bainbridgef430cd52019-05-28 15:00:35 -070085 -X github.com/opencord/voltha-go/common/version.buildTime=$org_label_schema_build_date"
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040086
87# Run tests
David Bainbridge5f3619c2019-07-10 22:51:09 +000088WORKDIR /build/tests/suites
89RUN /build/afrouterTest -config main.json -logLevel 1
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040090
91# -------------
92# Image creation stage
93
94FROM alpine:3.9.4
95
96# Set the working directory
97WORKDIR /app
98
99# Copy required files
100COPY --from=build-env /build/afrouter /app/tests/
101COPY --from=build-env /build/afrouterTest /app/tests/
102COPY --from=build-env /build/tests/suites/arouter.json /app/
103COPY --from=build-env /build/tests/suites/voltha.pb /app/tests/
104COPY --from=build-env /build/tests /app/tests/
105COPY --from=build-env /src/tests /app/tests/
106
David Bainbridge5f3619c2019-07-10 22:51:09 +0000107CMD ["tests/runAll", "tests"]
Matt Jeanneret2e3051a2019-05-11 15:01:46 -0400108
109# Label image
110ARG org_label_schema_version=unknown
111ARG org_label_schema_vcs_url=unknown
112ARG org_label_schema_vcs_ref=unknown
113ARG org_label_schema_build_date=unknown
114ARG org_opencord_vcs_commit_date=unknown
Kent Hagermanf4a3aab2019-05-22 14:42:34 -0400115ARG org_opencord_vcs_dirty=unknown
Matt Jeanneret2e3051a2019-05-11 15:01:46 -0400116
117LABEL org.label-schema.schema-version=1.0 \
118 org.label-schema.name=afroutertest \
119 org.label-schema.version=$org_label_schema_version \
120 org.label-schema.vcs-url=$org_label_schema_vcs_url \
121 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
122 org.label-schema.build-date=$org_label_schema_build_date \
Kent Hagermanf4a3aab2019-05-22 14:42:34 -0400123 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
124 org.opencord.vcs-dirty=$org_opencord_vcs_dirty