Wordlist-Video / run_local.sh
Sami
Setup Docker-based Hugging Face Space with project directory
cf9c856
raw
history blame
186 Bytes
#!/bin/bash
# Build the Docker image
docker build -t wordlist-video .
# Run the Docker container
docker run -p 7860:7860 wordlist-video
echo "Server running at http://localhost:7860"