From eaa0422a66ebc81baf6231656b9522e631641432 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 15:03:48 +0000 Subject: [PATCH] Update node Docker tag to v23.11.1 --- framework/Dockerfile | 4 ++-- gitea-action/Dockerfile | 2 +- gitlab-runner/Dockerfile | 2 +- history-microservice/Dockerfile | 4 ++-- history-website/Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/framework/Dockerfile b/framework/Dockerfile index 7991019..3c5c787 100644 --- a/framework/Dockerfile +++ b/framework/Dockerfile @@ -1,4 +1,4 @@ -FROM node:23.6.1-alpine AS build +FROM node:23.11.1-alpine AS build ARG BUILD_VERSION @@ -27,7 +27,7 @@ RUN npm install -g clean-modules@3.0.5 \ && rm -r ./language \ && clean-modules clean --yes -FROM node:23.6.1-alpine AS node +FROM node:23.11.1-alpine AS node ARG BUILD_VERSION ARG BUILD_TIME diff --git a/gitea-action/Dockerfile b/gitea-action/Dockerfile index f601069..e9b2eed 100644 --- a/gitea-action/Dockerfile +++ b/gitea-action/Dockerfile @@ -1,6 +1,6 @@ ARG BUILD_VERSION -FROM node:23.6.1-alpine AS node +FROM node:23.11.1-alpine AS node RUN apk add --no-cache "git=2.43.0-r0" && npm install -g clean-modules@3.0.5 RUN git clone --reference=$BUILD_VERSION https://github.com/idrinth-api-bench/framework.git /project diff --git a/gitlab-runner/Dockerfile b/gitlab-runner/Dockerfile index 16c13c6..c07d57a 100644 --- a/gitlab-runner/Dockerfile +++ b/gitlab-runner/Dockerfile @@ -1,6 +1,6 @@ ARG BUILD_VERSION -FROM node:23.6.1-alpine AS node +FROM node:23.11.1-alpine AS node RUN apk add --no-cache "git=2.43.0-r0" && npm install -g clean-modules@3.0.5 RUN git clone --reference=$BUILD_VERSION https://github.com/idrinth-api-bench/framework.git /project diff --git a/history-microservice/Dockerfile b/history-microservice/Dockerfile index da867ef..d227d27 100644 --- a/history-microservice/Dockerfile +++ b/history-microservice/Dockerfile @@ -1,6 +1,6 @@ ARG BUILD_VERSION -FROM node:23.6.1-alpine AS build +FROM node:23.11.1-alpine AS build RUN apk add --no-cache "git=2.43.0-r0" \ && npm install -g clean-modules@3.0.5 \ @@ -12,7 +12,7 @@ RUN apk add --no-cache "git=2.43.0-r0" \ && rm -rf /tmp/history-microservice/{README.md,src/**/*.ts} \ && clean-modules clean --yes -FROM node:23.6.1-alpine AS node +FROM node:23.11.1-alpine AS node ARG BUILD_VERSION ARG BUILD_TIME diff --git a/history-website/Dockerfile b/history-website/Dockerfile index 6757cba..67689ab 100644 --- a/history-website/Dockerfile +++ b/history-website/Dockerfile @@ -1,6 +1,6 @@ ARG BUILD_VERSION -FROM node:23.6.1-alpine AS build +FROM node:23.11.1-alpine AS build RUN git clone https://github.com/idrinth-api-bench/history-website.git /var/www/html \ && npm ci \