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