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.
This commit is contained in:
Sidney Marvin Fricke
2026-06-24 12:32:08 +02:00
parent 0b8671b7b0
commit 181ea1eaf6
+1 -1
View File
@@ -18,7 +18,7 @@ from typing import Any
logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s") logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s")
log = logging.getLogger("mcp") log = logging.getLogger("mcp")
WORKSPACE = os.environ.get("WORKSPACE_DIR", "/workspace") WORKSPACE = "/workspace"
import pyte import pyte
import ptyprocess import ptyprocess