blob: 7346bc980e8c1fc630d320943c41c17f85a254eb [file] [log] [blame]
Scott Baker2d897982019-09-24 11:50:08 -07001# 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.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
28
29# Prepare directory structure
Scott Bakerf8f97fa2019-09-30 13:07:01 -070030RUN mkdir -p /build/src/simulated_olt \
31 "$GOPATH/src/" "$GOPATH/pkg" "$GOPATH/bin"
Scott Baker2d897982019-09-24 11:50:08 -070032
Scott Bakerf8f97fa2019-09-30 13:07:01 -070033WORKDIR /build/src/simulated_olt
Scott Baker2d897982019-09-24 11:50:08 -070034
35# Copy files
36COPY . .
37
38ARG org_label_schema_version=unknown
39ARG org_label_schema_vcs_url=unknown
40ARG org_label_schema_vcs_ref=unknown
41ARG org_label_schema_build_date=unknown
42ARG org_opencord_vcs_commit_date=unknown
43ARG org_opencord_vcs_dirty=unknown
44
45# Build
Scott Bakerf8f97fa2019-09-30 13:07:01 -070046WORKDIR /build/src/simulated_olt
Scott Baker2d897982019-09-24 11:50:08 -070047SHELL ["/bin/ash", "-o", "pipefail", "-c"]
Scott Bakerf8f97fa2019-09-30 13:07:01 -070048RUN go build -mod=vendor -o /build/simulated_olt \
Scott Baker2d897982019-09-24 11:50:08 -070049 -ldflags \
50 "-X github.com/opencord/voltha-go/common/version.version=$org_label_schema_version \
51 -X github.com/opencord/voltha-go/common/version.vcsRef=$org_label_schema_vcs_ref \
52 -X github.com/opencord/voltha-go/common/version.vcsDirty=$org_opencord_vcs_dirty \
53 -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') \
54 -X github.com/opencord/voltha-go/common/version.os=$(go env GOHOSTOS) \
55 -X github.com/opencord/voltha-go/common/version.arch=$(go env GOHOSTARCH) \
56 -X github.com/opencord/voltha-go/common/version.buildTime=$org_label_schema_build_date" \
57 cmd/simulated_olt/main.go
58
59# -------------
60# Image creation stage
61
62FROM alpine:3.9.4
63# Set the working directory
64WORKDIR /app
65
66# Copy required files
67COPY --from=build-env /build/simulated_olt /app/
68
69# Label image
70ARG org_label_schema_version=unknown
71ARG org_label_schema_vcs_url=unknown
72ARG org_label_schema_vcs_ref=unknown
73ARG org_label_schema_build_date=unknown
74ARG org_opencord_vcs_commit_date=unknown
75ARG org_opencord_vcs_dirty=unknown
76
77LABEL org.label-schema.schema-version=1.0 \
78 org.label-schema.name=voltha-adapter-simulated-olt \
79 org.label-schema.version=$org_label_schema_version \
80 org.label-schema.vcs-url=$org_label_schema_vcs_url \
81 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
82 org.label-schema.build-date=$org_label_schema_build_date \
83 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
84 org.opencord.vcs-dirty=$org_opencord_vcs_dirty