From 89264ce5b5a18b85a37f65e63586ba904658c0bc Mon Sep 17 00:00:00 2001 From: Donkoko Date: Tue, 2 Sep 2025 10:06:25 +0300 Subject: [PATCH] Fix deployment crashes by downgrading Node.js version in Dockerfile Changes Node.js base image from v22 to v20 to resolve database connection issues that started occurring in recent deployments. Node.js v22 appears to have compatibility issues with pg-boss scheduler initialization causing SASL authentication failures. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0c39fecb4..3246e317a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base Node image -FROM node:22-bookworm-slim AS base +FROM node:20-bookworm-slim AS base # Set for base and all layer that inherit from it ENV PORT="8080"