pplx-v2 / Dockerfile
Clove Deploy
v2: session-based multi-turn with backend_uuid follow-up, seamless fallback on session expiry
8445e7c
Raw
History Blame Contribute Delete
204 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /data/pplx
VOLUME ["/data"]
EXPOSE 7860
CMD ["python", "app.py"]