Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 1 | # 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 | |
Zack Williams | 88200d3 | 2020-04-02 13:36:41 -0700 | [diff] [blame^] | 15 | FROM golang:1.13.9-alpine as build |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 16 | |
| 17 | ARG PROTOC_VERSION |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 18 | ARG PROTOC_SHA256SUM |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 19 | ARG PROTOC_GEN_GO_VERSION |
| 20 | ARG PROTOC_GEN_GRPC_GATEWAY_VERSION |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 21 | |
Zack Williams | 88200d3 | 2020-04-02 13:36:41 -0700 | [diff] [blame^] | 22 | RUN apk add --no-cache libatomic=9.2.0-r4 musl=1.1.24-r2 |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 23 | |
| 24 | # download & compile this specific version of protoc-gen-go |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 25 | RUN GO111MODULE=on CGO_ENABLED=0 go get -u \ |
| 26 | github.com/golang/protobuf/protoc-gen-go@v$PROTOC_GEN_GO_VERSION \ |
| 27 | github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway@v$PROTOC_GEN_GRPC_GATEWAY_VERSION \ |
| 28 | github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger@v$PROTOC_GEN_GRPC_GATEWAY_VERSION |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 29 | |
| 30 | RUN mkdir -p /tmp/protoc3 && \ |
| 31 | 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 && \ |
| 32 | [ "$(sha256sum /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip)" = "${PROTOC_SHA256SUM} /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" ] && \ |
Kent Hagerman | d84cc44 | 2020-01-29 17:09:14 -0500 | [diff] [blame] | 33 | unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 && \ |
| 34 | chmod -R a+rx /tmp/protoc3/ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 35 | |
| 36 | |
| 37 | FROM busybox:1.31.1-glibc |
| 38 | |
| 39 | # dynamic libs for protoc |
| 40 | COPY --from=build /usr/lib/libatomic.so.1 /usr/lib/ |
| 41 | COPY --from=build /lib/libc.musl-x86_64.so.1 /usr/lib/ |
| 42 | ENV LD_LIBRARY_PATH=/usr/lib |
| 43 | |
| 44 | # protoc & well-known-type definitions |
| 45 | COPY --from=build /tmp/protoc3/bin/* /usr/local/bin/ |
| 46 | COPY --from=build /tmp/protoc3/include/ /usr/local/include/ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 47 | |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 48 | # copy protoc-gen-go, protoc-gen-grpc-gateway, and protoc-gen-swagger |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 49 | COPY --from=build /go/bin/* /usr/local/bin/ |
| 50 | |
| 51 | WORKDIR /app |
| 52 | |
| 53 | # Label image |
| 54 | ARG org_label_schema_version=unknown |
| 55 | ARG org_label_schema_vcs_url=unknown |
| 56 | ARG org_label_schema_vcs_ref=unknown |
| 57 | ARG org_label_schema_build_date=unknown |
| 58 | ARG org_opencord_vcs_commit_date=unknown |
| 59 | ARG org_opencord_vcs_dirty=unknown |
| 60 | ARG PROTOC_VERSION=unknown |
| 61 | ARG PROTOC_GEN_GO_VERSION=unknown |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 62 | ARG PROTOC_GEN_GRPC_GATEWAY_VERSION=unknown |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 63 | |
| 64 | LABEL org.label-schema.schema-version=1.0 \ |
| 65 | org.label-schema.name=voltha-protoc \ |
| 66 | org.label-schema.version=$org_label_schema_version \ |
| 67 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 68 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 69 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 70 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \ |
| 71 | org.opencord.vcs-dirty=$org_opencord_vcs_dirty \ |
| 72 | org.opencord.protoc-version=$PROTOC_VERSION \ |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 73 | org.opencord.protoc-gen-go-version=$PROTOC_GEN_GO_VERSION \ |
| 74 | org.opencord.protoc-gen-grpc-gateway-version=$PROTOC_GEN_GRPC_GATEWAY_VERSION |