FROM python:3.10-slim COPY requirements.txt . RUN pip install --user --no-cache-dir -r requirements.txt COPY . . CMD ["mlserver", "start", "."]