Mercurial > repos > goeckslab > tabular_learner
comparison Dockerfile @ 0:209b663a4f62 draft
planemo upload for repository https://github.com/goeckslab/gleam commit 5dd048419fcbd285a327f88267e93996cd279ee6
| author | goeckslab |
|---|---|
| date | Wed, 18 Jun 2025 15:38:19 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:209b663a4f62 |
|---|---|
| 1 FROM python:3.11-slim | |
| 2 | |
| 3 ARG VERSION=3.3.2 | |
| 4 | |
| 5 # Install necessary dependencies, including libgomp1 | |
| 6 RUN apt-get update && \ | |
| 7 apt-get install -y --no-install-recommends git unzip libgomp1 && \ | |
| 8 rm -rf /var/lib/apt/lists/* | |
| 9 | |
| 10 # Install Python packages | |
| 11 RUN pip install -U pip && \ | |
| 12 pip install --no-cache-dir --no-compile joblib && \ | |
| 13 pip install --no-cache-dir --no-compile h5py && \ | |
| 14 pip install --no-cache-dir --no-compile pycaret[analysis,models]==${VERSION} && \ | |
| 15 pip install --no-cache-dir --no-compile explainerdashboard | |
| 16 | |
| 17 # Clean up unnecessary packages | |
| 18 RUN apt-get -y autoremove && apt-get clean && \ | |
| 19 rm -rf /var/lib/apt/lists/* |
