fix CVE-2026-0861: upgrade glibc via apt-get upgrade in Dockerfile (#832)

This commit is contained in:
Adil Hafeez 2026-03-16 13:27:37 -07:00 committed by GitHub
parent 5388c6777f
commit de2d8847f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,6 +49,7 @@ FROM python:3.14-slim AS arch
RUN set -eux; \
apt-get update; \
apt-get upgrade -y; \
apt-get install -y --no-install-recommends gettext-base curl; \
apt-get clean; rm -rf /var/lib/apt/lists/*