blob: 519d500ea38f3b355c0514d6d30b2657ec9f4821 [file] [log] [blame]
Kent Hagermanda41d742020-01-07 14:55:56 -05001# Copyright 2020-present Open Networking Foundation
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
15ARG GOLANG_VERSION
16FROM golang:$GOLANG_VERSION-alpine
17
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000018RUN apk add --no-cache git=2.30.2-r0 && \
Kent Hagermanda41d742020-01-07 14:55:56 -050019 mkdir -m 777 /.cache /go/pkg
20
21ENV GO111MODULE=on CGO_ENABLED=0
22
23WORKDIR /app
24
25# Label image
26ARG org_label_schema_version=unknown
27ARG org_label_schema_vcs_url=unknown
28ARG org_label_schema_vcs_ref=unknown
29ARG org_label_schema_build_date=unknown
30ARG org_opencord_vcs_commit_date=unknown
31ARG org_opencord_vcs_dirty=unknown
32ARG GOLANG_VERSION=unknown
33
34LABEL org.label-schema.schema-version=1.0 \
35 org.label-schema.name=voltha-protoc \
36 org.label-schema.version=$org_label_schema_version \
37 org.label-schema.vcs-url=$org_label_schema_vcs_url \
38 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
39 org.label-schema.build-date=$org_label_schema_build_date \
40 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
41 org.opencord.vcs-dirty=$org_opencord_vcs_dirty \
Andrey Pozolotin49a35452020-08-14 22:14:51 +020042 org.opencord.golang-version=$GOLANG_VERSION