CoolFace
Apppublic

npmaker/Final_Assignment

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
docker-compose.yml17 linesDownload Raw Back to root
1version: '3'2services:3  gradio-app:4    build: .5    ports:6      - "7860:7860"7    volumes:8      - .:/app9      - python-deps:/home/user/.local  # Persistent Python dependencies10    environment:11      - PYTHONUNBUFFERED=112      - DISPLAY=:9913      - MOZ_HEADLESS=114    env_file:15      - .env16volumes:17  python-deps: