blob: c71c46584f553eb3e0eb07cdb5d8505f5b893a47 [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
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000015ARG GOLANG_VERSION
16FROM golang:$GOLANG_VERSION-alpine as build
Kent Hagermanda41d742020-01-07 14:55:56 -050017
18ARG PROTOC_VERSION
Kent Hagermanda41d742020-01-07 14:55:56 -050019ARG PROTOC_SHA256SUM
Kent Hagerman1f99b662020-03-10 17:22:11 -040020ARG PROTOC_GEN_GO_VERSION
21ARG PROTOC_GEN_GRPC_GATEWAY_VERSION
Kent Hagermanda41d742020-01-07 14:55:56 -050022
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000023RUN apk add --no-cache libatomic=10.2.1_pre1-r3 musl=1.2.2-r0
Kent Hagermanda41d742020-01-07 14:55:56 -050024
25# download & compile this specific version of protoc-gen-go
Kent Hagerman1f99b662020-03-10 17:22:11 -040026RUN GO111MODULE=on CGO_ENABLED=0 go get -u \
27 github.com/golang/protobuf/protoc-gen-go@v$PROTOC_GEN_GO_VERSION \
28 github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway@v$PROTOC_GEN_GRPC_GATEWAY_VERSION \
29 github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger@v$PROTOC_GEN_GRPC_GATEWAY_VERSION
Kent Hagermanda41d742020-01-07 14:55:56 -050030
31RUN mkdir -p /tmp/protoc3 && \
32 wget -O /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip && \
33 [ "$(sha256sum /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip)" = "${PROTOC_SHA256SUM} /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" ] && \
Kent Hagermand84cc442020-01-29 17:09:14 -050034 unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 && \
35 chmod -R a+rx /tmp/protoc3/
Kent Hagermanda41d742020-01-07 14:55:56 -050036
37
38FROM busybox:1.31.1-glibc
39
40# dynamic libs for protoc
41COPY --from=build /usr/lib/libatomic.so.1 /usr/lib/
42COPY --from=build /lib/libc.musl-x86_64.so.1 /usr/lib/
43ENV LD_LIBRARY_PATH=/usr/lib
44
45# protoc & well-known-type definitions
46COPY --from=build /tmp/protoc3/bin/* /usr/local/bin/
47COPY --from=build /tmp/protoc3/include/ /usr/local/include/
Kent Hagermanda41d742020-01-07 14:55:56 -050048
Kent Hagerman1f99b662020-03-10 17:22:11 -040049# copy protoc-gen-go, protoc-gen-grpc-gateway, and protoc-gen-swagger
Kent Hagermanda41d742020-01-07 14:55:56 -050050COPY --from=build /go/bin/* /usr/local/bin/
51
52WORKDIR /app
53
54# 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
60ARG org_opencord_vcs_dirty=unknown
61ARG PROTOC_VERSION=unknown
62ARG PROTOC_GEN_GO_VERSION=unknown
Kent Hagerman1f99b662020-03-10 17:22:11 -040063ARG PROTOC_GEN_GRPC_GATEWAY_VERSION=unknown
Kent Hagermanda41d742020-01-07 14:55:56 -050064
65LABEL org.label-schema.schema-version=1.0 \
66 org.label-schema.name=voltha-protoc \
67 org.label-schema.version=$org_label_schema_version \
68 org.label-schema.vcs-url=$org_label_schema_vcs_url \
69 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
70 org.label-schema.build-date=$org_label_schema_build_date \
71 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \
72 org.opencord.vcs-dirty=$org_opencord_vcs_dirty \
73 org.opencord.protoc-version=$PROTOC_VERSION \
Kent Hagerman1f99b662020-03-10 17:22:11 -040074 org.opencord.protoc-gen-go-version=$PROTOC_GEN_GO_VERSION \
75 org.opencord.protoc-gen-grpc-gateway-version=$PROTOC_GEN_GRPC_GATEWAY_VERSION