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