# Build Playwright Proxy MCP Docker Image
Stop and remove any existing containers using the playwright-proxy-mcp image, then build a fresh Docker image.
Steps:
1. Find all containers (running or stopped) that use the playwright-proxy-mcp image using `docker ps -a --filter ancestor=playwright-proxy-mcp --format "{{.ID}}"`
2. If any containers are found:
- Stop and remove them using `docker rm -f <container_id>`
3. Build the Docker image using `docker compose build`
Execute these steps sequentially and report the results of each operation.