| $ErrorActionPreference = "Stop" | |
| $port = (Get-Content -Raw -Path "port.json" | ConvertFrom-Json).port | |
| $imageName = "sunpy-mcp" | |
| docker build -t $imageName . | |
| docker run --rm -it -p "${port}:${port}" $imageName | |
| $ErrorActionPreference = "Stop" | |
| $port = (Get-Content -Raw -Path "port.json" | ConvertFrom-Json).port | |
| $imageName = "sunpy-mcp" | |
| docker build -t $imageName . | |
| docker run --rm -it -p "${port}:${port}" $imageName | |