moving chatbot-ui in demos and out of root project structure

This commit is contained in:
Salman Paracha 2024-10-29 11:57:09 -07:00
parent 60299244b9
commit 257c0bbbb4
10 changed files with 5 additions and 5 deletions

View file

@ -1,18 +0,0 @@
FROM python:3.10 AS base
FROM base AS builder
WORKDIR /src
COPY requirements.txt /src/
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
FROM python:3.10-slim AS output
COPY --from=builder /runtime /usr/local
WORKDIR /app
COPY *.py .
CMD ["python", "run_stream.py"]