From 8d2b3711adb825c1df887ecfb09befbe4494a1a2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 15:15:23 +0000 Subject: [PATCH] chore(deps): Update docker-all --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b17b1e46..bb5974fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG RELEASE_CHANNEL=dev # Stage 1: Build frontend # Pin to digest for reproducible builds (Dependabot will update this) -FROM node:24-alpine@sha256:cd6fb7efa6490f039f3471a189214d5f548c11df1ff9e5b181aa49e22c14383e AS frontend-builder +FROM node:24-alpine@sha256:4f696fbf39f383c1e486030ba6b289a5d9af541642fc78ab197e584a113b9c03 AS frontend-builder WORKDIR /app/frontend @@ -27,7 +27,7 @@ RUN npm run build # Stage 2: Build Python dependencies # Use Chainguard's dev image which includes pip and build tools # Pin to digest for reproducible builds (Dependabot will update this) -FROM cgr.dev/chainguard/python:latest-dev@sha256:16ef9480a72a9e1f422ade7c60c7d4d4a3ef258b676ecd223ae137972c3520fc AS python-builder +FROM cgr.dev/chainguard/python:latest-dev@sha256:1e3d3b3e7613f024a212737de914d323ceb210ace0d41a8dbb596f8d80feae34 AS python-builder WORKDIR /app @@ -46,7 +46,7 @@ RUN python -m venv /app/venv && \ # Stage 3: Runtime with minimal Chainguard image # This image has 0-5 CVEs typically vs 800+ in python:3.12-slim # Pin to digest for reproducible builds (Dependabot will update this) -FROM cgr.dev/chainguard/python:latest@sha256:90d81f1d75d9042571a6776b89763678f77fae44e399baf823466091bd494b02 +FROM cgr.dev/chainguard/python:latest@sha256:47fe69adf3f2a9a8875b1bbfa1a1eeccf1a79dec952cdf5334b8517141a025a9 # Re-declare build args for this stage ARG BUILD_TIME=unknown