File size: 362 Bytes
1d12a1d 24e0214 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Use an official lightweight Python image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy all application files
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port for FastAPI
EXPOSE 8000
# Start FastAPI app with Uvicorn
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|