blob: 76bc42e1469ce733ec5fbc36edb66d04c928d17d [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
khenaidoocfee5f42018-07-19 22:47:38 -040015# -------------
16# Build stage
17
Kent Hagermandcd4dcc2020-02-25 17:56:17 -050018FROM golang:1.13.8-alpine3.11 AS build-env
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040019
20# Install required packages
Kent Hagermandcd4dcc2020-02-25 17:56:17 -050021RUN apk add --no-cache build-base=0.5-r1
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040022
girishk5259f8e2019-10-10 18:44:44 +000023# Golang container has GOPATH set to /go by default. Hence, need to explicitly enable
24# Go modules while using folder /go/src under GOPATH as build path; lest go modules
25# will be disabled
26ENV GO111MODULE=on
khenaidoocfee5f42018-07-19 22:47:38 -040027
girishk5259f8e2019-10-10 18:44:44 +000028# Use Standard go build directory structure
29WORKDIR /go/src
khenaidooffe076b2019-01-15 16:08:08 -050030
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040031# Copy common files.
32COPY common ./common
sbarbari17d7e222019-11-05 10:02:29 -050033COPY db ./db
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040034COPY vendor ./vendor
35
khenaidoocfee5f42018-07-19 22:47:38 -040036# Copy files
Matt Jeanneret85ab5082019-04-01 11:29:20 -040037COPY rw_core ./rw_core
girishk5259f8e2019-10-10 18:44:44 +000038COPY go.mod ./
39COPY go.sum ./
khenaidooffe076b2019-01-15 16:08:08 -050040
Matt Jeanneret877b5c22019-07-03 11:09:50 -040041ARG org_label_schema_version=unknown
42ARG org_label_schema_vcs_url=unknown
43ARG org_label_schema_vcs_ref=unknown
44ARG org_label_schema_build_date=unknown
45ARG org_opencord_vcs_commit_date=unknown
46ARG org_opencord_vcs_dirty=unknown
47
Matt Jeanneret85ab5082019-04-01 11:29:20 -040048# Build
girishk5259f8e2019-10-10 18:44:44 +000049WORKDIR /go/src/rw_core
David Bainbridge5f3619c2019-07-10 22:51:09 +000050SHELL ["/bin/ash", "-o", "pipefail", "-c"]
girishk5259f8e2019-10-10 18:44:44 +000051RUN go build -mod=vendor -o /go/bin/rw_core \
David K. Bainbridgef430cd52019-05-28 15:00:35 -070052 -ldflags \
serkant.uluderya2ae470f2020-01-21 11:13:09 -080053 "-X github.com/opencord/voltha-lib-go/v3/pkg/version.version=$org_label_schema_version \
54 -X github.com/opencord/voltha-lib-go/v3/pkg/version.vcsRef=$org_label_schema_vcs_ref \
55 -X github.com/opencord/voltha-lib-go/v3/pkg/version.vcsDirty=$org_opencord_vcs_dirty \
56 -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') \
57 -X github.com/opencord/voltha-lib-go/v3/pkg/version.os=$(go env GOHOSTOS) \
58 -X github.com/opencord/voltha-lib-go/v3/pkg/version.arch=$(go env GOHOSTARCH) \
59 -X github.com/opencord/voltha-lib-go/v3/pkg/version.buildTime=$org_label_schema_build_date"
Matt Jeanneret85ab5082019-04-01 11:29:20 -040060
khenaidoocfee5f42018-07-19 22:47:38 -040061# -------------
62# Image creation stage
63
Kent Hagermandcd4dcc2020-02-25 17:56:17 -050064FROM alpine:3.11.3
khenaidoocfee5f42018-07-19 22:47:38 -040065
66# Set the working directory
67WORKDIR /app
68
69# Copy required files
girishk5259f8e2019-10-10 18:44:44 +000070COPY --from=build-env /go/bin/rw_core /app/
khenaidoocfee5f42018-07-19 22:47:38 -040071
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040072# Label image
73ARG org_label_schema_version=unknown
74ARG org_label_schema_vcs_url=unknown
75ARG org_label_schema_vcs_ref=unknown
76ARG org_label_schema_build_date=unknown
77ARG org_opencord_vcs_commit_date=unknown
Kent Hagermanf4a3aab2019-05-22 14:42:34 -040078ARG org_opencord_vcs_dirty=unknown
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040079
80LABEL org.label-schema.schema-version=1.0 \
81 org.label-schema.name=voltha-rw-core \
82 org.label-schema.version=$org_label_schema_version \
83 org.label-schema.vcs-url=$org_label_schema_vcs_url \
84 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
85 org.label-schema.build-date=$org_label_schema_build_date \
Kent Hagermanf4a3aab2019-05-22 14:42:34 -040086 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
87 org.opencord.vcs-dirty=$org_opencord_vcs_dirty