Mercurial > repos > goeckslab > pycaret_compare
diff Dockerfile @ 4:4aa511539199 draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Pycaret commit cf47efb521b91a9cb44ae5c5ade860627f9b9030
author | goeckslab |
---|---|
date | Tue, 03 Jun 2025 19:31:16 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Dockerfile Tue Jun 03 19:31:16 2025 +0000 @@ -0,0 +1,19 @@ +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/*