# Use Python 3.10 base image
FROM python:3.10.14-slim

# Install any needed dependencies specified in requirements.txt
RUN pip install --no-cache-dir scikit-learn numpy pandas matplotlib
