chatbotv2 / Dockerfile
sahil239's picture
Upload 2 files
66d68fc verified
raw
history blame
222 Bytes
FROM python:3.10
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]