FROM python:3.9 # Set the working directory in the container WORKDIR /code # Copy the requirements file into the container at /app COPY requirements.txt ./requirements.txt # Install uvicorn RUN pip install uvicorn # Install Python packages from requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # Copy the current directory contents into the container at /app COPY . . CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app" ]