comparison 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
comparison
equal deleted inserted replaced
3:02f7746e7772 4:4aa511539199
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/*