From 6f5c5b4833d963169003923e2cf011c41cc92393 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Fri, 28 Mar 2025 22:31:43 +0100 Subject: [PATCH] chore(deps): bump --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4832a5b..f26e160 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM node:23.4.0-alpine3.20 AS build -# FROM registry.odit.services/hub/library/node:23.3.0-alpine3.20 AS build +FROM node:23.10.0-alpine3.21 AS build # ARG NPM_REGISTRY_URL=https://registry.npmjs.org WORKDIR /app COPY . . # RUN npm config set registry $NPM_REGISTRY_URL && npm i -g pnpm@9 -RUN npm i -g pnpm@9 +RUN npm i -g pnpm@10.7 RUN pnpm i --frozen-lockfile RUN pnpm build