view Dockerfile @ 5:3d42f82b3c7f draft

planemo upload for repository https://github.com/goeckslab/gleam commit 4a11e8a4c4e9daa884bddedfa47090476c517667
author goeckslab
date Thu, 31 Jul 2025 15:41:07 +0000
parents 209b663a4f62
children
line wrap: on
line source

FROM python:3.11-slim

ARG VERSION=3.3.2

# Install necessary dependencies, including libgomp1
RUN apt-get update && \
    apt-get install -y --no-install-recommends git unzip libgomp1 && \
    rm -rf /var/lib/apt/lists/*

# Install Python packages
RUN pip install -U pip && \
    pip install --no-cache-dir --no-compile joblib && \
    pip install --no-cache-dir --no-compile h5py && \
    pip install --no-cache-dir --no-compile pycaret[analysis,models]==${VERSION} && \
    pip install --no-cache-dir --no-compile explainerdashboard

# Clean up unnecessary packages
RUN apt-get -y autoremove && apt-get clean && \
    rm -rf /var/lib/apt/lists/*