From 1c1d55ab8af41b3886df9fd68232e77646f40362 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sat, 9 May 2026 20:02:45 +0000 Subject: [PATCH] fix(docker): configure pnpm to use the verdaccio registry during Docker builds --- Dockerfile | 1 + changelog.md | 6 ++++++ ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff11e18..c0bccc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ FROM code.foss.global/host.today/ht-docker-node:lts AS build WORKDIR /app COPY package.json pnpm-lock.yaml ./ +RUN pnpm config set registry https://verdaccio.lossless.digital/ RUN pnpm config set store-dir .pnpm-store RUN pnpm install --frozen-lockfile diff --git a/changelog.md b/changelog.md index e41d6fa..2439231 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-05-09 - 13.27.1 - fix(docker) +configure pnpm to use the verdaccio registry during Docker builds + +- Adds a pnpm registry configuration step before dependency installation in the Dockerfile. +- Ensures container builds resolve packages from the configured Verdaccio registry. + ## 2026-05-09 - 13.27.0 - feat(api-token-manager) seed and rotate the environment-managed admin API token during initialization diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 493a27e..cb988c4 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/dcrouter', - version: '13.27.0', + version: '13.27.1', description: 'A multifaceted routing service handling mail and SMS delivery functions.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 493a27e..cb988c4 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/dcrouter', - version: '13.27.0', + version: '13.27.1', description: 'A multifaceted routing service handling mail and SMS delivery functions.' }