From 7142107726232b2fd8b6f9be30a14fd6980365df Mon Sep 17 00:00:00 2001 From: majiayu000 <1835304752@qq.com> Date: Mon, 16 Mar 2026 03:10:52 +0800 Subject: [PATCH] fix: use source build Dockerfile in docker-compose-queue-source.yml docker-compose-queue-source.yml was referencing docker/Dockerfile which installs Flowise from npm registry. Changed to root Dockerfile which builds from source with pnpm install && pnpm build, matching the intended purpose of the "-source" compose file. Fixes #4966 Signed-off-by: majiayu000 <1835304752@qq.com> --- docker/docker-compose-queue-source.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-compose-queue-source.yml b/docker/docker-compose-queue-source.yml index a95608e5cfc..5d964d00a17 100644 --- a/docker/docker-compose-queue-source.yml +++ b/docker/docker-compose-queue-source.yml @@ -15,7 +15,7 @@ services: container_name: flowise-main build: context: .. # Build using the Dockerfile in the root directory - dockerfile: docker/Dockerfile + dockerfile: Dockerfile ports: - '${PORT}:${PORT}' volumes: