feat: add PowerShell scripts for building and deploying Zen MCP Server; update .dockerignore and README. Fix error in API key detection in Docker deployment script.

This commit is contained in:
OhMyApps
2025-06-27 20:47:15 +02:00
parent 62178aa073
commit 308d42becf
5 changed files with 287 additions and 21 deletions

View File

@@ -24,9 +24,13 @@ nano .env
# Build the Docker image
docker build -t zen-mcp-server:latest .
# Or use the build script
# Or use the build script (Bash)
chmod +x docker/scripts/build.sh
./docker/scripts/build.sh
# Build with PowerShell
docker/scripts/build.ps1
```
### 4. Usage Options
@@ -54,6 +58,9 @@ docker run --rm -i \
chmod +x docker/scripts/deploy.sh
./docker/scripts/deploy.sh
# Or use PowerShell script
docker/scripts/deploy.ps1
# Interactive stdio mode
docker-compose exec zen-mcp python server.py
```