FROM python:3.10-slim-buster # Set the working directory inside the container WORKDIR /app # Install git RUN apt-get update && \ apt-get install -y git # Clone the repository into the current directory RUN git clone https://github.com/AttnVision/mp.git . # Modify a specific file directly after clone (before dependencies are installed) RUN python <