From d20670309817b3870df875127f1aa524fb6d6626 Mon Sep 17 00:00:00 2001 From: Taken Date: Fri, 25 Oct 2024 18:31:18 +0200 Subject: [PATCH] Updated node version --- .node-version | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.node-version b/.node-version index 4f79d22..ab44d29 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -21.7.3 +22.10.0 diff --git a/Dockerfile b/Dockerfile index cb0eecf..01a482c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21.7.3-alpine3.18 AS cache +FROM node:22.10.0-alpine3.20 AS cache WORKDIR /cache @@ -10,7 +10,7 @@ RUN corepack enable RUN pnpm install # main image -FROM node:21.7.3-alpine3.18 +FROM node:22.10.0-alpine3.20 WORKDIR /app COPY --from=cache /cache/node_modules /app/node_modules