chatbotv2 / Dockerfile
sahil239's picture
Upload Dockerfile
38ac21f verified
raw
history blame contribute delete
223 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", "main:app", "--host", "0.0.0.0", "--port", "7860"]