FROM python:3.11-slim # Install build tools and deps for QuickFIX RUN apt-get update && apt-get install -y \ build-essential \ gcc \ && rm -rf /var/lib/apt/lists/* WORKDIR /opt COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt