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 | |
David K. Bainbridge | e33a5bc | 2021-04-06 20:30:58 +0000 | [diff] [blame] | 15 | ARG GOLANG_VERSION |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 16 | FROM golang:$GOLANG_VERSION-alpine3.13 as go-build |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 17 | |
| 18 | ARG PROTOC_VERSION |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 19 | ARG PROTOC_SHA256SUM |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 20 | ARG PROTOC_GEN_GO_VERSION |
| 21 | ARG PROTOC_GEN_GRPC_GATEWAY_VERSION |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 22 | |
David K. Bainbridge | e33a5bc | 2021-04-06 20:30:58 +0000 | [diff] [blame] | 23 | RUN apk add --no-cache libatomic=10.2.1_pre1-r3 musl=1.2.2-r0 |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 24 | |
| 25 | # download & compile this specific version of protoc-gen-go |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 26 | RUN GO111MODULE=on CGO_ENABLED=0 go get -a -u \ |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 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 Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 30 | |
| 31 | RUN 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 Hagerman | d84cc44 | 2020-01-29 17:09:14 -0500 | [diff] [blame] | 34 | unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 && \ |
| 35 | chmod -R a+rx /tmp/protoc3/ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 36 | |
Andrea Campanella | a13b2c5 | 2021-04-26 11:38:51 +0000 | [diff] [blame^] | 37 | ARG GOLANG_VERSION |
| 38 | FROM golang:$GOLANG_VERSION-alpine3.13 as cpp-build |
| 39 | |
| 40 | ARG PROTOC_GEN_CPP_VERSION |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 41 | |
| 42 | # Install required packages |
| 43 | RUN apk add --no-cache \ |
| 44 | build-base=0.5-r2 \ |
| 45 | git=2.30.2-r0 \ |
| 46 | cmake=3.18.4-r1 \ |
Andrea Campanella | a13b2c5 | 2021-04-26 11:38:51 +0000 | [diff] [blame^] | 47 | linux-headers=5.7.8-r0 \ |
| 48 | perl=5.32.0-r0 |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 49 | |
| 50 | WORKDIR /src |
| 51 | |
| 52 | # Clone grpc and submodules |
Andrea Campanella | a13b2c5 | 2021-04-26 11:38:51 +0000 | [diff] [blame^] | 53 | RUN git clone --recurse-submodules -b v${PROTOC_GEN_CPP_VERSION} \ |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 54 | --depth=1 --shallow-submodules https://github.com/grpc/grpc |
| 55 | |
| 56 | # Create and configure make environment |
| 57 | RUN mkdir -p /src/grpc/cmake/build |
| 58 | WORKDIR /src/grpc/cmake/build |
| 59 | RUN cmake \ |
| 60 | -DgRPC_INSTALL=ON \ |
| 61 | -DCMAKE_INSTALL_PREFIX=/install \ |
| 62 | -DCMAKE_BUILD_TYPE=Release \ |
| 63 | -DgRPC_ABSL_PROVIDER=module \ |
| 64 | -DgRPC_CARES_PROVIDER=module \ |
| 65 | -DgRPC_PROTOBUF_PROVIDER=module \ |
| 66 | -DgRPC_RE2_PROVIDER=module \ |
| 67 | -DgRPC_SSL_PROVIDER=module \ |
| 68 | -DgRPC_ZLIB_PROVIDER=module \ |
| 69 | ../.. |
| 70 | |
| 71 | # Build the cpp plugin |
| 72 | RUN make grpc_cpp_plugin |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 73 | |
| 74 | FROM busybox:1.31.1-glibc |
| 75 | |
| 76 | # dynamic libs for protoc |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 77 | COPY --from=go-build /usr/lib/libatomic.so.1 /usr/lib/ |
| 78 | COPY --from=go-build /lib/libc.musl-x86_64.so.1 /usr/lib/ |
| 79 | COPY --from=cpp-build /usr/lib/libstdc++.so.6 /usr/lib/ |
| 80 | COPY --from=cpp-build /usr/lib/libgcc_s.so.1 /usr/lib/ |
| 81 | COPY --from=cpp-build /lib/ld-musl-x86_64.so.1 /usr/lib/ |
| 82 | COPY --from=cpp-build /lib/ld-musl-x86_64.so.1 /lib/ |
| 83 | |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 84 | ENV LD_LIBRARY_PATH=/usr/lib |
| 85 | |
| 86 | # protoc & well-known-type definitions |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 87 | COPY --from=go-build /tmp/protoc3/bin/* /usr/local/bin/ |
| 88 | COPY --from=go-build /tmp/protoc3/include/ /usr/local/include/ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 89 | |
David K. Bainbridge | 278fc16 | 2021-04-21 16:35:56 +0000 | [diff] [blame] | 90 | # copy protoc-gen-go, protoc-gen-grpc-gateway, protoc-gen-swagger, |
| 91 | # and grpc_cpp_plugin |
| 92 | COPY --from=go-build /go/bin/* /usr/local/bin/ |
| 93 | COPY --from=cpp-build /src/grpc/cmake/build/grpc_cpp_plugin /usr/local/bin |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 94 | |
| 95 | WORKDIR /app |
| 96 | |
| 97 | # Label image |
| 98 | ARG org_label_schema_version=unknown |
| 99 | ARG org_label_schema_vcs_url=unknown |
| 100 | ARG org_label_schema_vcs_ref=unknown |
| 101 | ARG org_label_schema_build_date=unknown |
| 102 | ARG org_opencord_vcs_commit_date=unknown |
| 103 | ARG org_opencord_vcs_dirty=unknown |
| 104 | ARG PROTOC_VERSION=unknown |
| 105 | ARG PROTOC_GEN_GO_VERSION=unknown |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 106 | ARG PROTOC_GEN_GRPC_GATEWAY_VERSION=unknown |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 107 | |
| 108 | LABEL org.label-schema.schema-version=1.0 \ |
| 109 | org.label-schema.name=voltha-protoc \ |
| 110 | org.label-schema.version=$org_label_schema_version \ |
| 111 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 112 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 113 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 114 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \ |
| 115 | org.opencord.vcs-dirty=$org_opencord_vcs_dirty \ |
| 116 | org.opencord.protoc-version=$PROTOC_VERSION \ |
Kent Hagerman | 1f99b66 | 2020-03-10 17:22:11 -0400 | [diff] [blame] | 117 | org.opencord.protoc-gen-go-version=$PROTOC_GEN_GO_VERSION \ |
| 118 | org.opencord.protoc-gen-grpc-gateway-version=$PROTOC_GEN_GRPC_GATEWAY_VERSION |