|
|
|
FROM python:3.11-slim |
|
|
|
|
|
WORKDIR /app |
|
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \ |
|
PYTHONUNBUFFERED=1 \ |
|
PYTHONPATH=/app |
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \ |
|
build-essential \ |
|
libffi-dev \ |
|
&& apt-get clean \ |
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
COPY requirements.txt . |
|
RUN pip install -U pip |
|
RUN pip install --no-cache-dir -r requirements.txt |
|
|
|
|
|
COPY app.py . |
|
COPY openrouter_llm.py . |
|
|
|
|
|
|
|
RUN mkdir -p uploads vectordb cache |
|
RUN chmod -R 777 uploads vectordb |
|
RUN chmod -R 777 cache |
|
RUN chmod -R 777 ~/.cache |
|
RUN pwd |
|
RUN ls |
|
|
|
|
|
EXPOSE 7860 |
|
|
|
|
|
|
|
|
|
|
|
|
|
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |