sofzcc's picture
Upload 5 files
668f677 verified
Raw
History Blame Contribute Delete
192 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p kb .cache/faiss static
EXPOSE 7860
CMD ["python", "app.py"]