Spaces:
Runtime error
Runtime error
| $ErrorActionPreference = "Stop" | |
| $portConfig = Get-Content -Raw -Path "port.json" | ConvertFrom-Json | |
| $port = [int]$portConfig.port | |
| $image = "graph-theory-mcp" | |
| docker build -t $image . | |
| docker run --rm -it -p "${port}:${port}" $image | |