Spaces:
Sleeping
Sleeping
File size: 305 Bytes
67037b3 aff51c1 67037b3 aff51c1 67037b3 aff51c1 67037b3 aff51c1 67037b3 aff51c1 67037b3 aff51c1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Create data directory
RUN mkdir -p data static/voice_notes
# Set permissions
RUN chmod -R a+rwx /app
EXPOSE 8501
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8501"] |