ai-document-assistant / Dockerfile
Mahil27
Remove venv for Hugging Face deployment
f8ceaa0
raw
history blame contribute delete
239 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY backend/requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY backend /app
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]