dedupe / run_docker.sh
ghh1125's picture
Upload 13 files
43595d0 verified
Raw
History Blame Contribute Delete
256 Bytes
#!/usr/bin/env bash
set -euo pipefail
PORT=$(python3 -c 'import json; print(json.load(open("port.json", "r", encoding="utf-8"))["port"])')
IMAGE_NAME="dedupe-mcp"
docker build -t "${IMAGE_NAME}" .
docker run --rm -it -p "${PORT}:${PORT}" "${IMAGE_NAME}"