shivareddy-03's picture
Deploy FastAPI backend for HF Space
b238d44
Raw
History Blame Contribute Delete
409 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
tesseract-ocr \
espeak-ng \
ffmpeg \
libsndfile1 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONUNBUFFERED=1
EXPOSE 7860
CMD ["uvicorn", "main_fastapi:app", "--host", "0.0.0.0", "--port", "7860"]