Skip to content

Commit e05a280

Browse files
UID2-6864: Upgrade libpng to fix CVE-2026-33416 and CVE-2026-33636
Add apk upgrade libpng to Dockerfile and Azure CC Dockerfile to upgrade from 1.6.54-r0 to 1.6.56-r0. GCP Dockerfile already had the upgrade in place. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d5b01dd commit e05a280

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# sha from https://hub.docker.com/layers/library/eclipse-temurin/21-jre-alpine-3.23/images/sha256-693c22ea458d62395bac47a2da405d0d18c77b205211ceec4846a550a37684b6
22
FROM eclipse-temurin@sha256:693c22ea458d62395bac47a2da405d0d18c77b205211ceec4846a550a37684b6
33

4+
# Upgrade libpng to fix CVE-2026-33416 and CVE-2026-33636
5+
RUN apk upgrade --no-cache libpng
6+
47
# For Amazon Corretto Crypto Provider
58
RUN apk add --no-cache gcompat
69

scripts/azure-cc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM eclipse-temurin@sha256:693c22ea458d62395bac47a2da405d0d18c77b205211ceec4846a550a37684b6
33

44
# Install necessary packages and set up virtual environment
5-
RUN apk update && apk add --no-cache jq python3 py3-pip && \
5+
RUN apk update && apk add --no-cache --upgrade libpng && apk add --no-cache jq python3 py3-pip && \
66
python3 -m venv /venv && \
77
. /venv/bin/activate && \
88
pip install --no-cache-dir requests azure-identity azure-keyvault-secrets && \

0 commit comments

Comments
 (0)