diff --git a/Dockerfile_dev_fips b/Dockerfile_dev_fips index 1ecbd981ce..4d9da1cc73 100644 --- a/Dockerfile_dev_fips +++ b/Dockerfile_dev_fips @@ -1,13 +1,13 @@ -FROM alpine:3.17.1 as otelcol +FROM alpine:3.21.1 as otelcol COPY otelcol-sumo / # This shouldn't be necessary but sometimes we end up with execution bit not set. # ref: https://github.com/open-telemetry/opentelemetry-collector/issues/1317 RUN chmod 755 /otelcol-sumo -FROM alpine:3.17.1 as certs +FROM alpine:3.21.1 as certs RUN apk --update add ca-certificates -FROM alpine:3.17.1 as directories +FROM alpine:3.21.1 as directories RUN mkdir /etc/otel/ FROM debian:11.6 as systemd @@ -16,7 +16,7 @@ RUN apt update && apt install -y systemd # h stands for dereference of symbolic links RUN tar czhf journalctl.tar.gz /bin/journalctl $(ldd /bin/journalctl | grep -oP "\/.*? ") -FROM alpine:3.17.1 +FROM alpine:3.21.1 RUN apk update && apk add curl tar RUN curl -LJ "https://go-boringcrypto.storage.googleapis.com/go1.18.7b7.linux-amd64.tar.gz" -o go.linux-amd64.tar.gz \ && tar -C /usr/local -xzf go.linux-amd64.tar.gz \