From 1083a1d260ba956ed0dfd11e1e8f864092bee3d1 Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Sun, 26 Apr 2026 14:46:55 +0100 Subject: [PATCH] =?UTF-8?q?chore(docker):=20bump=20node=2020=20=E2=86=92?= =?UTF-8?q?=2022?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silences oidc-provider's "Unsupported runtime" warning on every boot. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5102ee0..0375bac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:20-alpine AS builder +FROM node:22-alpine AS builder WORKDIR /app COPY package*.json ./ @@ -10,7 +10,7 @@ RUN npm run build # Production stage — only the self-contained .output is needed. # bash + curl are added so Dokploy scheduled tasks (which wrap commands in # `bash -c "..."`) can run; alpine ships only ash and has no curl by default. -FROM node:20-alpine +FROM node:22-alpine RUN apk add --no-cache bash curl WORKDIR /app COPY --from=builder /app/.output .output