From 195e872cc5603adbab25d3071af49932f880164a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 10:56:28 +0000 Subject: [PATCH] [docker] Bump node from 20-alpine to 21-alpine in /vre-panel Bumps node from 20-alpine to 21-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vre-panel/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vre-panel/Dockerfile b/vre-panel/Dockerfile index 53b50e7..471eba0 100644 --- a/vre-panel/Dockerfile +++ b/vre-panel/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:20-alpine AS deps +FROM node:21-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat WORKDIR /app @@ -12,7 +12,7 @@ RUN npm install RUN npm ci # Rebuild the source code only when needed -FROM node:20-alpine AS builder +FROM node:21-alpine AS builder ARG NODE_ENV WORKDIR /app COPY --from=deps /app/node_modules ./node_modules @@ -29,7 +29,7 @@ COPY . . RUN npm run build # Production image, copy all the files and run next -FROM node:20-alpine AS runner +FROM node:21-alpine AS runner WORKDIR /app ENV NODE_ENV production