# Use the official Python image as the base image | |
FROM python:3.9 | |
# Set the working directory in the container | |
WORKDIR /code | |
# copy all the files in the app folder | |
COPY app/ . | |
# Install the Python dependencies | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
EXPOSE 7860 | |
# Start the FastAPI app with Uvicorn when the container starts | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |