SupportMind / Dockerfile
Asmitha-28's picture
Upload Dockerfile with huggingface_hub
989225e verified
raw
history blame contribute delete
225 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONPATH=/app/src
EXPOSE 7860
CMD ["uvicorn", "src.api:app", "--host", "0.0.0.0", "--port", "7860"]