Spaces:
Runtime error
Runtime error
File size: 309 Bytes
05b45a5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.10-slim
WORKDIR /app/ui
# Install dependencies
RUN pip install gradio==5.9.1 requests==2.32.3
# Create necessary directories
RUN mkdir -p data/inputs data/outputs
# Copy the application files
COPY . .
ENV API_HOST=kokoro-tts
ENV API_PORT=8880
# Run the Gradio app
CMD ["python", "app.py"]
|