ChatFilter / Dockerfile
John Doe
fix error
3ab5798
raw
history blame
232 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
# Download models at build time
RUN python download_models.py
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]