From 181ea1eaf60686fefe65cb7d38e137282747328d Mon Sep 17 00:00:00 2001 From: Sidney Marvin Fricke Date: Wed, 24 Jun 2026 12:32:08 +0200 Subject: [PATCH] simplify WORKSPACE to a hardcoded constant WORKSPACE_DIR env var was never set in docker-compose.yml, so the default always applied anyway. The container-internal mount point is always /workspace, so there's no reason to make it configurable. --- server/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/main.py b/server/main.py index dd01bbd..33233cd 100644 --- a/server/main.py +++ b/server/main.py @@ -18,7 +18,7 @@ from typing import Any logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s") log = logging.getLogger("mcp") -WORKSPACE = os.environ.get("WORKSPACE_DIR", "/workspace") +WORKSPACE = "/workspace" import pyte import ptyprocess