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 . . # Create uploads directory if it doesn't exist and set permissions RUN mkdir -p static/uploads && chmod -R 775 static/uploads CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app" ]