File size: 468 Bytes
5f1f14e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Use Python base image
FROM --platform=linux/amd64 python:latest
# Set working directory in the container
WORKDIR /app
# Copy requirements.txt to container
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the FastAPI app files to the container
COPY . /app
# Expose port 80 for FastAPI app
EXPOSE 7860
# Command to start the FastAPI app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|