# Python image used to run secsgem-py against our C++ apps for cross-validation.
# Kept separate from the C++ build image so we don't bloat the toolchain layer.
FROM python:3.12-slim

RUN pip install --no-cache-dir secsgem==0.3.0 grpcio==1.60.0 grpcio-tools==1.60.0 "setuptools<80"

WORKDIR /interop
