From f65b590fbb3f683c818320a681eaba90d7e94c48 Mon Sep 17 00:00:00 2001 From: Andrey Gruzdev Date: Thu, 9 Jul 2026 13:44:11 +0200 Subject: [PATCH] fix(docker): pin backend runtime base images --- nest/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nest/Dockerfile b/nest/Dockerfile index b647dc0..258f1b4 100644 --- a/nest/Dockerfile +++ b/nest/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:24-alpine AS build +FROM node@sha256:2bdb65ed1dab192432bc31c95f94155ca5ad7fc1392fb7eb7526ab682fa5bf14 AS build WORKDIR /app @@ -20,7 +20,7 @@ COPY src/ src/ RUN npm run build # Runtime (production) layer -FROM docker:dind AS production +FROM docker@sha256:7d85d0eda291f1a7ab6df4a9d1802b5ad4cf9145a088bd11188c78dcb5c7392b AS production # Install dependencies for Rust, build tools, and HIDAPI RUN apk add --no-cache \