blob: 11dedce4f71e23cb8b38642df1e7c8e3d3050a9d [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
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040018FROM 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"]
khenaidoocfee5f42018-07-19 22:47:38 -040028
khenaidooffe076b2019-01-15 16:08:08 -050029WORKDIR $GOPATH/src/github.com/opencord/voltha-go
30
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040031# Copy common files.
32COPY common ./common
33COPY db ./db
34COPY kafka ./kafka
35COPY vendor ./vendor
36
khenaidoocfee5f42018-07-19 22:47:38 -040037# Copy files
Matt Jeanneret85ab5082019-04-01 11:29:20 -040038COPY rw_core ./rw_core
khenaidooffe076b2019-01-15 16:08:08 -050039
Matt Jeanneret85ab5082019-04-01 11:29:20 -040040# Build
41RUN cd rw_core && go build -o /build/rw_core
42
khenaidoocfee5f42018-07-19 22:47:38 -040043# -------------
44# Image creation stage
45
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040046FROM alpine:3.9.4
khenaidoocfee5f42018-07-19 22:47:38 -040047
48# Set the working directory
49WORKDIR /app
50
51# Copy required files
Matt Jeanneret85ab5082019-04-01 11:29:20 -040052COPY --from=build-env /build/rw_core /app/
khenaidoocfee5f42018-07-19 22:47:38 -040053
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040054# Label image
55ARG org_label_schema_version=unknown
56ARG org_label_schema_vcs_url=unknown
57ARG org_label_schema_vcs_ref=unknown
58ARG org_label_schema_build_date=unknown
59ARG org_opencord_vcs_commit_date=unknown
60
61LABEL org.label-schema.schema-version=1.0 \
62 org.label-schema.name=voltha-rw-core \
63 org.label-schema.version=$org_label_schema_version \
64 org.label-schema.vcs-url=$org_label_schema_vcs_url \
65 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
66 org.label-schema.build-date=$org_label_schema_build_date \
67 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date