From fd25e28d5abf53de4c773ac4e9cdbd4dc278de3f Mon Sep 17 00:00:00 2001 From: Max P Date: Tue, 24 Feb 2026 11:40:24 -0500 Subject: [PATCH] fix(railway): use Dockerfile builder and remove invalid startCommand - Changed from NIXPACKS to DOCKERFILE builder - Removed startCommand (Dockerfile has CMD) - Fixes: 'Build failed to leave the wheelhouse' error --- railway.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/railway.toml b/railway.toml index edc96df9c..33dfb490b 100644 --- a/railway.toml +++ b/railway.toml @@ -1,8 +1,7 @@ [build] -builder = "NIXPACKS" +builder = "DOCKERFILE" [deploy] -startCommand = "node main.js" healthcheckPath = "/api/v1/health" healthcheckTimeout = 300 restartPolicyType = "ON_FAILURE"