File size: 234 Bytes
697d6c3
06f7446
 
 
 
 
697d6c3
06f7446
1
2
3
4
5
6
7
8
9
$ErrorActionPreference = "Stop"

$portConfig = Get-Content -Raw -Path "port.json" | ConvertFrom-Json
$port = [int]$portConfig.port
$imageName = "rdkit-mcp"

docker build -t $imageName .
docker run --rm -p "${port}:${port}" $imageName