llmapp / Dockerfile
philmui's picture
add app files
69fd9fe
raw
history blame contribute delete
216 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["chainlit", "run", "app.py", "-w", "--port", "7860"]