Spaces:
No application file
No application file
File size: 300 Bytes
7890b15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.11-slim
WORKDIR /app
COPY requirements_cl.txt .
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
ENV CHAINLIT_PORT=8005
CMD ["chainlit", "run", "src/chainlit_app.py", "--host", "0.0.0.0", "--port", "8000"] |