Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Security upgrade alpine from 3.17.1 to 3.20.3 #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile_dev_fips
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM alpine:3.17.1 as otelcol
FROM alpine:3.20.3 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.20.3 as certs
RUN apk --update add ca-certificates

FROM alpine:3.17.1 as directories
FROM alpine:3.20.3 as directories
RUN mkdir /etc/otel/

FROM debian:11.6 as systemd
Expand All @@ -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.20.3
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 \
Expand Down
Loading