FROM python:3.11-slim

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY test_util.py .
COPY process_data.py .
COPY test_data.h5 .
