FROM python:3.12-slim
WORKDIR /app
# On installe tout une bonne fois pour toutes
RUN pip install --no-cache-dir numpy matplotlib pillow
CMD ["bash"]

