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"