From 06265c74bc5817f486b1105cd314ca64c3af0c2d Mon Sep 17 00:00:00 2001 From: lorrylockie Date: Fri, 14 Apr 2023 20:16:55 +0800 Subject: [PATCH] fixed the 'deploy failure on Railway #11 ' bug According to the official documentation, if "..." is not provided, the Node package will not be installed. https://nixpacks.com/docs/guides/configuring-builds#install-additional-packages docs --- railway.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railway.json b/railway.json index 7f0237a..1192f89 100644 --- a/railway.json +++ b/railway.json @@ -7,7 +7,7 @@ "nixpacksPlan": { "phases": { "setup": { - "nixPkgs": ["ffmpeg"] + "nixPkgs": ["...", "ffmpeg"] } } }