Skip to content

Commit ee8781c

Browse files
committed
upgrade libpng to fix CVE-2026-22695 and CVE-2026-22801
1 parent 37184bd commit ee8781c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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:79f8eb45e1219ce03b48d045b1ee920ea529acceb7ff2be6fad7b0b5cb6f07e0
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 && \

scripts/gcp-oidc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL "tee.launch_policy.allow_env_override"="API_TOKEN_SECRET_NAME,DEPLOYMENT_E
55
LABEL "tee.launch_policy.log_redirect"="always"
66

77
# Install Packages
8-
RUN apk update && apk add --no-cache jq python3 py3-pip && \
8+
RUN apk update && apk add --no-cache --upgrade libpng && apk add --no-cache jq python3 py3-pip && \
99
python3 -m venv /venv && \
1010
. /venv/bin/activate && \
1111
pip install --no-cache-dir google-cloud-secret-manager google-auth google-api-core packaging && \

0 commit comments

Comments
 (0)