2022-01-16 21:33:28 +00:00
|
|
|
# Copyright 2021 The Kubernetes Authors. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
|
2022-12-19 01:07:43 +00:00
|
|
|
FROM alpine:3.17.0 as base
|
2022-01-16 21:33:28 +00:00
|
|
|
|
2022-05-14 13:41:17 +00:00
|
|
|
RUN mkdir -p /opt/third_party/install
|
|
|
|
COPY . /opt/third_party/
|
2022-01-16 21:33:28 +00:00
|
|
|
|
2022-05-14 13:41:17 +00:00
|
|
|
# install build tools
|
2022-01-16 21:33:28 +00:00
|
|
|
RUN apk update \
|
|
|
|
&& apk upgrade \
|
2022-12-20 14:22:51 +00:00
|
|
|
&& apk add -U bash cmake \
|
2022-05-14 13:41:17 +00:00
|
|
|
&& bash /opt/third_party/build.sh -p
|
2022-01-16 21:33:28 +00:00
|
|
|
|
2022-05-14 13:41:17 +00:00
|
|
|
# install gRPC
|
|
|
|
FROM base as grpc
|
2023-01-07 23:37:27 +00:00
|
|
|
RUN bash /opt/third_party/build.sh -g v1.49.2
|
2022-01-16 21:33:28 +00:00
|
|
|
|
2022-05-14 13:41:17 +00:00
|
|
|
# install OpenTelemetry-cpp
|
|
|
|
FROM base as otel-cpp
|
|
|
|
COPY --from=grpc /opt/third_party/install/ /usr
|
2023-01-07 23:37:27 +00:00
|
|
|
RUN bash /opt/third_party/build.sh -o v1.8.1
|
2022-05-14 13:41:17 +00:00
|
|
|
|
|
|
|
# install otel_ngx_module.so
|
|
|
|
FROM base as nginx
|
|
|
|
COPY --from=grpc /opt/third_party/install/ /usr
|
|
|
|
COPY --from=otel-cpp /opt/third_party/install/ /usr
|
|
|
|
RUN bash /opt/third_party/build.sh -n
|
|
|
|
|
2022-12-20 14:22:51 +00:00
|
|
|
FROM alpine:3.17.0 as final
|
2022-05-14 13:41:17 +00:00
|
|
|
COPY --from=base /opt/third_party/init_module.sh /usr/local/bin/init_module.sh
|
|
|
|
COPY --from=nginx /etc/nginx/modules /etc/nginx/modules
|
2022-05-23 09:10:02 +00:00
|
|
|
COPY --from=nginx /opt/third_party/install/lib /etc/nginx/modules
|