From 376eb537885ea9764473a87498eb6d35a86e0e5d Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Sat, 28 Oct 2023 17:52:57 +0200 Subject: [PATCH] chore: update docker node base v21 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b66ce4413..4909bb875 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM:-linux/amd64} node:18-alpine as builder +FROM --platform=${BUILDPLATFORM:-linux/amd64} node:21-alpine as builder ENV NODE_ENV=development \ VERDACCIO_BUILD_REGISTRY=https://registry.npmjs.org @@ -20,7 +20,7 @@ RUN npm -g i pnpm@8.9.0 && \ # NODE_ENV=production pnpm install --frozen-lockfile --ignore-scripts # RUN pnpm install --prod --ignore-scripts -FROM node:18-alpine +FROM node:21-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \