ChEdBot / Dockerfile
root
Add Dockerfile
6bf1fbd
raw
history blame
221 Bytes
FROM python:3.10
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . .
CMD ["chainlit", "run", "app.py", "--port", "7860", "--no-cache"]