From 8a76425cc8bfc963a029e7e80555d65f62c1bd72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 07:53:02 +0000 Subject: [PATCH] Bump alpine from 3.18 to 3.20 in /protobuf Bumps alpine from 3.18 to 3.20. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- protobuf/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protobuf/Dockerfile b/protobuf/Dockerfile index 91f972b2..99e64a9f 100644 --- a/protobuf/Dockerfile +++ b/protobuf/Dockerfile @@ -15,7 +15,7 @@ ARG UPX_VERSION=4.0.2 ARG TARGETARCH=amd64 -FROM alpine:3.18 as protoc_builder +FROM alpine:3.20 as protoc_builder RUN apk add --no-cache build-base curl automake autoconf libtool git zlib-dev linux-headers cmake ninja RUN mkdir -p /out @@ -130,7 +130,7 @@ RUN mkdir -p ${GOPATH}/src/github.com/atoulme/protoc-gen-parquet && \ mkdir -p /out/usr/include/protoc-gen-parquet/options && \ install -D $(find ./parquet_options -name '*.proto') -t /out/usr/include/protoc-gen-parquet/options -FROM alpine:3.18 as packer +FROM alpine:3.20 as packer RUN apk add --no-cache curl ARG UPX_VERSION @@ -156,7 +156,7 @@ RUN upx --lzma $(find /out/usr/bin/ \ RUN find /out -name "*.a" -delete -or -name "*.la" -delete -FROM alpine:3.18 +FROM alpine:3.20 LABEL maintainer="The OpenTelemetry Authors" COPY --from=packer /out/ / RUN apk add --no-cache bash libstdc++ && \