Mercurial > repos > goeckslab > pycaret_predict
view Dockerfile @ 4:afd0864d18b6 draft default tip
planemo upload for repository https://github.com/goeckslab/gleam commit 5dd048419fcbd285a327f88267e93996cd279ee6
author | goeckslab |
---|---|
date | Wed, 18 Jun 2025 15:38:42 +0000 |
parents | ccd798db5abb |
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/*