blob: 3f7d3f1a4997dde3a91abd14a68bd7dab584fe0d [file] [log] [blame]
Don Newton8eca4622020-02-10 16:44:48 -05001# 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 \
22 wget=1.20.3-r0 \
23 git=2.20.2-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
28
29# Golang container has GOPATH set to /go by default. Hence, need to explicitly enable
30# Go modules while using folder /go/src under GOPATH as build path; lest go modules
31# will be disabled
32ENV GO111MODULE=on
33
34# Use Standard go build directory structure
35WORKDIR /go/src
36
37# Copy common files.
38COPY common ./common
39COPY db ./db
40COPY vendor ./vendor
41
42# Copy files
43COPY rw_core ./rw_core
44COPY go.mod ./
45COPY go.sum ./
46
47ARG org_label_schema_version=unknown
48ARG org_label_schema_vcs_url=unknown
49ARG org_label_schema_vcs_ref=unknown
50ARG org_label_schema_build_date=unknown
51ARG org_opencord_vcs_commit_date=unknown
52ARG org_opencord_vcs_dirty=unknown
53
54# Build
55WORKDIR /go/src/rw_core
56SHELL ["/bin/ash", "-o", "pipefail", "-c"]
57RUN go build -tags profile -mod=vendor -o /go/bin/rw_core \
58 -ldflags \
59 "-X github.com/opencord/voltha-lib-go/v3/pkg/version.version=$org_label_schema_version \
60 -X github.com/opencord/voltha-lib-go/v3/pkg/version.vcsRef=$org_label_schema_vcs_ref \
61 -X github.com/opencord/voltha-lib-go/v3/pkg/version.vcsDirty=$org_opencord_vcs_dirty \
62 -X github.com/opencord/voltha-lib-go/v3/pkg/version.goVersion=$(go version 2>&1 | sed -E 's/.*go([0-9]+\.[0-9]+\.[0-9]+).*/\1/g') \
63 -X github.com/opencord/voltha-lib-go/v3/pkg/version.os=$(go env GOHOSTOS) \
64 -X github.com/opencord/voltha-lib-go/v3/pkg/version.arch=$(go env GOHOSTARCH) \
65 -X github.com/opencord/voltha-lib-go/v3/pkg/version.buildTime=$org_label_schema_build_date"
66
67# -------------
68# Image creation stage
69
70FROM alpine:3.9.4
71
72# Set the working directory
73WORKDIR /app
74
75# Copy required files
76COPY --from=build-env /go/bin/rw_core /app/
77
78# Label image
79ARG org_label_schema_version=unknown
80ARG org_label_schema_vcs_url=unknown
81ARG org_label_schema_vcs_ref=unknown
82ARG org_label_schema_build_date=unknown
83ARG org_opencord_vcs_commit_date=unknown
84ARG org_opencord_vcs_dirty=unknown
85
86LABEL org.label-schema.schema-version=1.0 \
87 org.label-schema.name=voltha-rw-core \
88 org.label-schema.version=$org_label_schema_version \
89 org.label-schema.vcs-url=$org_label_schema_vcs_url \
90 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
91 org.label-schema.build-date=$org_label_schema_build_date \
92 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
93 org.opencord.vcs-dirty=$org_opencord_vcs_dirty