syai4.0 / Dockerfile
peterpeter8585's picture
Update Dockerfile
71b8dae verified
raw
history blame
281 Bytes
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
WORKDIR /
RUN pip install chainlit langchain_huggingface langchain_community langchain bs4 wikipedia redis requests huggingface_hub duckduckgo-search youtube_search
RUN chmod +x /app.py
EXPOSE 8000
CMD ["chainlit", "run","app.py"]