med-summary-v2 / Dockerfile
hariharan220's picture
Create Dockerfile
d68b9f4 verified
raw
history blame contribute delete
388 Bytes
# Base image with Python and pip
FROM python:3.9
# Set working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Expose the FastAPI port
EXPOSE 7860
# Start the FastAPI app using Uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]