FROM python:3.11-slim # Install build dependencies and clean up RUN apt-get update --fix-missing && \ apt-get install -y --no-install-recommends \ build-essential \ cmake \ ninja-build && \ apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY . . # upgrade pip and install your package RUN pip install --upgrade pip && \ pip install -e . CMD ["/bin/bash"]