From 4280f117727d4265b62c89b68f24f906629de460 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Thu, 26 Feb 2026 23:59:56 +0100 Subject: [PATCH] fix: use v1.8.20 base images and no-frozen-lockfile in Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 27cae9c0..2e39bb01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Builder -FROM registry.infra.mintel.me/mintel/nextjs:v1.8.21 AS base +FROM registry.infra.mintel.me/mintel/nextjs:v1.8.20 AS base WORKDIR /app # Arguments for build-time configuration @@ -27,7 +27,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \ export NPM_TOKEN=$(cat /run/secrets/NPM_TOKEN) && \ echo "@mintel:registry=https://npm.infra.mintel.me" > .npmrc && \ echo "//npm.infra.mintel.me/:_authToken=\${NPM_TOKEN}" >> .npmrc && \ - pnpm install --frozen-lockfile && \ + pnpm install --no-frozen-lockfile && \ rm .npmrc # Copy source code @@ -51,7 +51,7 @@ ENV UV_THREADPOOL_SIZE=3 RUN pnpm build # Stage 2: Runner -FROM registry.infra.mintel.me/mintel/runtime:v1.8.21 AS runner +FROM registry.infra.mintel.me/mintel/runtime:v1.8.20 AS runner WORKDIR /app # Create nextjs user and group (standardized in runtime image but ensuring local ownership)