Skip to content
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
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ RUN dnf install -y --nodocs \
&& dnf clean all \
&& update-ca-trust

# CVE-2026-9547: Update curl/libcurl to patched version
RUN dnf update -y 'curl >= 8.6.0-3' 'libcurl >= 8.6.0-3' \
&& dnf clean all \
&& echo "Verifying curl version includes CVE-2026-9547 fix:" \
&& rpm -q curl libcurl \
&& curl --version | head -n 1


RUN curl -L -X GET https://go.dev/dl/go1.24.1.linux-amd64.tar.gz -o /tmp/go1.24.1.linux-amd64.tar.gz \
&& tar -C /usr/local -xzf /tmp/go1.24.1.linux-amd64.tar.gz \
Expand Down