climlab / run_docker.ps1
ghh1125's picture
Upload 14 files
079b2ee verified
Raw
History Blame Contribute Delete
189 Bytes
$ErrorActionPreference = "Stop"
$port = (Get-Content -Raw "port.json" | ConvertFrom-Json).port
$image = "climlab-mcp"
docker build -t $image .
docker run --rm -p "${port}:${port}" $image