From 9407c724a5546367b88832dfd58976bcda8b24e1 Mon Sep 17 00:00:00 2001 From: Moreminimore Date: Sun, 16 Aug 2026 22:34:39 +0700 Subject: [PATCH] build: remove nixpacks.toml (not a supported way to select a Dockerfile) Nixpacks does not support pointing at an external Dockerfile via nixpacks.toml (the [build] provider/dockerfile fields are ignored), so this file was dead config. The correct fix for the EasyPanel rbenv build failure is to set the service builder to 'Dockerfile' (path docker/Dockerfile) in the EasyPanel service config. --- nixpacks.toml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml deleted file mode 100644 index f9a29df05..000000000 --- a/nixpacks.toml +++ /dev/null @@ -1,7 +0,0 @@ -# Nixpacks config — use the repository's own, known-good Dockerfile -# (Chatwoot's docker/Dockerfile builds ruby:3.4.4-alpine + node + pnpm + -# bundle install + assets:precompile) instead of Nixpacks' auto-generated -# stack which installs Ruby via rbenv and fails. -[build] -provider = "dockerfile" -dockerfile = "docker/Dockerfile"