Updated node version

This commit is contained in:
2024-10-25 18:31:18 +02:00
parent 10456770c9
commit d206703098
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
21.7.3
22.10.0

View File

@@ -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