From db09f73028d2396cbb507602db542defe691a29f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 11 Aug 2026 01:57:07 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A3=20Update=20Node.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | datasource | package | from | to | | ---------- | ------- | ------- | ------- | | docker | node | 20.18.1 | 22.12.0 | | docker | node | 22.16.0 | 22.22.3 | | docker | node | 18.20.3 | 22.2.0 | --- apps/postiz/Dockerfile | 2 +- apps/seonaut/Dockerfile | 2 +- disabled/rdtclient/Dockerfile | 2 +- disabled/stremify/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/postiz/Dockerfile b/apps/postiz/Dockerfile index c551ad50f7..28b4823332 100644 --- a/apps/postiz/Dockerfile +++ b/apps/postiz/Dockerfile @@ -8,7 +8,7 @@ RUN apk update && apk upgrade && \ # for now, just clone latest RUN git clone -b $VERSION https://github.com/gitroomhq/postiz-app.git /source -FROM node:20-alpine3.19 +FROM node:22-alpine3.19 ARG NEXT_PUBLIC_VERSION ENV NEXT_PUBLIC_VERSION=$NEXT_PUBLIC_VERSION RUN apk add --no-cache g++ make py3-pip bash nginx diff --git a/apps/seonaut/Dockerfile b/apps/seonaut/Dockerfile index cdce48e00a..1b663613ea 100644 --- a/apps/seonaut/Dockerfile +++ b/apps/seonaut/Dockerfile @@ -17,7 +17,7 @@ WORKDIR /app RUN CGO_ENABLED=0 GOOS=linux go build -o seonaut cmd/server/main.go -FROM node:18-alpine3.18 AS front +FROM node:22-alpine3.18 AS front WORKDIR /home/node COPY --from=builder /app ./app/ RUN npm install --save-exact esbuild && ./node_modules/esbuild/bin/esbuild ./app/web/css/style.css \ diff --git a/disabled/rdtclient/Dockerfile b/disabled/rdtclient/Dockerfile index c27658773e..61f338f6da 100644 --- a/disabled/rdtclient/Dockerfile +++ b/disabled/rdtclient/Dockerfile @@ -10,7 +10,7 @@ RUN git clone -b $VERSION https://github.com/rogerfar/rdt-client.git /source # Stage 1 - Build the frontend -FROM node:22.16.0-alpine3.22 AS node-build-env +FROM node:22.22.3-alpine3.22 AS node-build-env ARG TARGETPLATFORM ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} ARG BUILDPLATFORM diff --git a/disabled/stremify/Dockerfile b/disabled/stremify/Dockerfile index bd87b3dedb..9c20ccb334 100644 --- a/disabled/stremify/Dockerfile +++ b/disabled/stremify/Dockerfile @@ -10,7 +10,7 @@ RUN apk update && apk upgrade && \ RUN git clone https://github.com/stremify/stremify /source -FROM node:20-alpine3.19 as build-stage +FROM node:22-alpine3.19 as build-stage ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH"