sentiment-scope / docker-compose.yml
melkholy's picture
feat: single-image Hugging Face Spaces deployment with rate limiting
c1fa0b4 verified
Raw
History Blame Contribute Delete
345 Bytes
services:
backend:
build: ./backend
volumes:
# Persist HuggingFace downloads across container rebuilds — the model
# is ~500MB and only needs to be fetched once.
- hf-cache:/root/.cache/huggingface
frontend:
build: ./frontend
ports:
- "8080:80"
depends_on:
- backend
volumes:
hf-cache: