From 924ef0d9f6ca1515d8fed5783919d8e18f5efc46 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Tue, 3 Mar 2026 14:01:57 +0700 Subject: [PATCH] fix: Remove nixpacks.toml (use custom Dockerfile) - Easypanel was auto-detecting nixpacks config - Remove nixpacks.toml to force Dockerfile usage - Prevents nixpacks build errors --- nixpacks.toml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml deleted file mode 100644 index f26cf7237..000000000 --- a/nixpacks.toml +++ /dev/null @@ -1,14 +0,0 @@ -# Nixpacks Configuration for Astro -# https://nixpacks.com/docs/configuration/file - -[phases.setup] -nixPkgs = ["nodejs-20_x"] - -[phases.install] -cmds = ["npm ci"] - -[phases.build] -cmds = ["npm run build"] - -[start] -cmd = "npm run preview -- --host 0.0.0.0 --port $PORT"