MentalHealthBot / Dockerfile
Sanjay002's picture
Create Dockerfile
2f31d30 verified
raw
history blame contribute delete
193 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir torch transformers peft bitsandbytes fastapi uvicorn
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]