From 439265c2c2bb494edb6ed8cf5ae5c47e8641de0b Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Wed, 22 Oct 2025 14:56:36 -0500 Subject: [PATCH] fix: simplify disco.json to use Dockerfile build process MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove custom build commands and worker service from disco.json to avoid conflicts with vendor/aprs dependency compilation. Let Disco use the existing Dockerfile which properly handles the build process. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- disco.json | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/disco.json b/disco.json index 1ba142e..94e3ff6 100644 --- a/disco.json +++ b/disco.json @@ -2,18 +2,7 @@ "version": "1.0", "services": { "web": { - "port": 4000, - "command": "mix phx.server" - }, - "worker": { - "command": "mix run --no-halt" - } - }, - "build": { - "command": "mix assets.deploy && mix release", - "env": { - "MIX_ENV": "prod", - "PHX_SERVER": "true" + "port": 4000 } } } \ No newline at end of file