FROM python:3.10

# Install Python packages
RUN pip install --no-cache-dir \
    pysam==0.21.0 \
    flask==2.3.2 \
    numpy==1.24.3 \
    matplotlib==3.7.1 \
    scipy==1.10.0 \
    intervaltree==3.1.0 \
    future==0.18.3 \
    Mosek==9.3.22
