blob: ce269730008206cb5a4949bea40ada7ac2f04a22 [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
khenaidood2b6df92018-12-13 16:37:20 -050015# -------------
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"]
khenaidood2b6df92018-12-13 16:37:20 -050028
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
khenaidood2b6df92018-12-13 16:37:20 -050037# Copy files
Matt Jeanneret85ab5082019-04-01 11:29:20 -040038COPY adapters/simulated_onu ./adapters/simulated_onu
39COPY adapters/common ./adapters/common
40COPY adapters/*.go ./adapters/
khenaidooffe076b2019-01-15 16:08:08 -050041
Matt Jeanneret85ab5082019-04-01 11:29:20 -040042# Build
43RUN cd adapters/simulated_onu && go build -o /build/simulated_onu
44
khenaidood2b6df92018-12-13 16:37:20 -050045# -------------
46# Image creation stage
47
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040048FROM alpine:3.9.4
khenaidood2b6df92018-12-13 16:37:20 -050049
50# Set the working directory
51WORKDIR /app
52
53# Copy required files
Matt Jeanneret85ab5082019-04-01 11:29:20 -040054COPY --from=build-env /build/simulated_onu /app/
khenaidood2b6df92018-12-13 16:37:20 -050055
Matt Jeanneret2e3051a2019-05-11 15:01:46 -040056# Label image
57ARG org_label_schema_version=unknown
58ARG org_label_schema_vcs_url=unknown
59ARG org_label_schema_vcs_ref=unknown
60ARG org_label_schema_build_date=unknown
61ARG org_opencord_vcs_commit_date=unknown
62
63LABEL org.label-schema.schema-version=1.0 \
64 org.label-schema.name=voltha-adapter-simulated-onu \
65 org.label-schema.version=$org_label_schema_version \
66 org.label-schema.vcs-url=$org_label_schema_vcs_url \
67 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
68 org.label-schema.build-date=$org_label_schema_build_date \
69 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date