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.
|
|
|
|
|
|
|
|
|
2024-01-28 21:53:29 +00:00
|
|
|
FROM alpine:3.19.1 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 \
|
2023-09-03 21:13:47 +00:00
|
|
|
&& apk add -U bash \
|
2022-05-14 13:41:17 +00:00
|
|
|
&& bash /opt/third_party/build.sh -p
|
2022-01-16 21:33:28 +00:00
|
|
|
|
2023-09-03 21:13:47 +00:00
|
|
|
ENV NINJA_STATUS "[%p/%f/%t] "
|
2023-06-12 10:47:48 +00:00
|
|
|
|
2022-05-14 13:41:17 +00:00
|
|
|
# install otel_ngx_module.so
|
|
|
|
FROM base as nginx
|
2024-01-27 15:33:50 +00:00
|
|
|
ARG NGINX_VERSION=1.25.3
|
|
|
|
RUN bash /opt/third_party/build.sh -n ${NGINX_VERSION}
|
2022-05-14 13:41:17 +00:00
|
|
|
|
2024-01-27 15:33:50 +00:00
|
|
|
FROM golang:1.21.6-bullseye as build-init
|
2023-06-12 10:47:48 +00:00
|
|
|
|
|
|
|
WORKDIR /go/src/app
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go mod download
|
|
|
|
RUN CGO_ENABLED=0 go build -o /go/bin/init_module
|
|
|
|
|
2023-12-08 22:15:02 +00:00
|
|
|
FROM gcr.io/distroless/static-debian11 as final
|
2023-06-12 10:47:48 +00:00
|
|
|
COPY --from=build-init /go/bin/init_module /
|
2022-05-14 13:41:17 +00:00
|
|
|
COPY --from=nginx /etc/nginx/modules /etc/nginx/modules
|
2023-06-12 10:47:48 +00:00
|
|
|
|
|
|
|
CMD ["/init_module"]
|