fix(gtm-architect): Stabilize Docker environment and fix frontend

- Refactor Docker build process for gtm-app to ensure reliability
- Correct volume mounts and build context in docker-compose.yml to prevent stale code
- Fix frontend 404 error by using relative paths in index.html
- Ensure API key is correctly mounted into the container
- Stabilize Node.js to Python data passing via explicit --data argument
- Update gtm_architect_documentation.md with extensive troubleshooting guide
This commit is contained in:
2026-01-01 08:36:48 +00:00
parent df78055ecf
commit df58878973
8 changed files with 210 additions and 139 deletions

View File

@@ -82,10 +82,10 @@
}
}
</script>
<link rel="stylesheet" href="/index.css">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
<script type="module" src="./index.tsx"></script>
</body>
</html>