Document-Reader / Dockerfile
singhjagpreet's picture
hf port
0820e49
raw
history blame
210 Bytes
FROM python:3.10
WORKDIR /app
COPY /src /app/src
COPY requirements.txt /app/.
COPY app.py /app/.
COPY chainlit.md /app/.
EXPOSE 7860
RUN pip install -r requirements.txt
CMD ["chainlit", "run", "app.py"]