FROM python:3.10 WORKDIR /code COPY ./requirements.txt /code/requirements.txt # Upgrade pip before installing requirements RUN pip install --no-cache-dir --upgrade pip # Install dependencies RUN pip install --no-cache-dir -r /code/requirements.txt # Create and use non-root user RUN useradd -m user USER user # Set environment variables ENV HOME=/home/user \ PATH=/home/user/.local/bin:${PATH} WORKDIR $HOME/app COPY --chown=user . $HOME/app # Run the application CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]