langchat-backend / Dockerfile
Tanmay09516's picture
backend for LangChat
9408cb5 verified
raw
history blame contribute delete
425 Bytes
# Use an official Python runtime as a base image
FROM python:3.9-slim
# Set the working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Expose the port FastAPI runs on
EXPOSE 8000
# Command to run the app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]