syai4.0 / Dockerfile
peterpeter8585's picture
Update Dockerfile
fecf8a2 verified
raw
history blame
163 Bytes
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
WORKDIR /
RUN pip install -r /requirements.txt
RUN chmod +x /app.py
EXPOSE 8000
CMD ["chainlit", "run","app.py"]