Spaces:
Sleeping
Sleeping
File size: 301 Bytes
f5a501e 5fdc413 f5a501e 5fdc413 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Dockerfile
FROM python:3.9
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# ✅ Create audio directory with write permissions
RUN mkdir -p /code/audio && chmod 777 /code/audio
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|