From 94164d5acc79a54a75301ca452edbaa0b3bb0aa7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:36:46 +0000 Subject: [PATCH] chore: update node.js to v22 --- Dockerfile.ci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 25a4fec074..5b657dc958 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1,4 +1,4 @@ -FROM docker.io/library/node:18-alpine AS builder +FROM docker.io/library/node:22-alpine AS builder WORKDIR /src COPY . ./ RUN apk add --no-cache python3 py3-setuptools make g++ git @@ -25,7 +25,7 @@ RUN yarn install --frozen-lockfile --network-timeout 100000 && \ # Default commitlint config npm pack @commitlint/config-conventional -FROM docker.io/library/node:18-alpine +FROM docker.io/library/node:22-alpine RUN apk add --no-cache git COPY --from=builder /src/*.tgz ./ RUN npm config set fetch-retry-mintimeout 20000 && \