Spaces:
Build error
Build error
File size: 304 Bytes
e8248b5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | version: "3.8"
services:
gradio_app:
build:
context: . # Use the root as context
dockerfile: .docker/Dockerfile # Specify the Dockerfile inside .docker
ports:
- "7860:7860"
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
restart: unless-stopped
|