Mercurial > repos > goeckslab > ludwig_experiment
view Docker/galaxy_ludwig/Dockerfile @ 6:ec99e53e91d6 draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Ludwig.git commit 157a73c006785cd373d41578001b32a8cf9ebdeb
author | goeckslab |
---|---|
date | Wed, 27 Aug 2025 20:27:54 +0000 |
parents | 78b1e3921576 |
children |
line wrap: on
line source
FROM python:3.10-slim ARG VERSION=0.10.3 RUN apt-get -y update && apt-get install -y --no-install-recommends build-essential cmake git unzip RUN pip install -U pip && \ pip install 'git+https://github.com/goeckslab/model-unpickler.git' && \ pip install 'git+https://github.com/goeckslab/smart-report.git@17df590f3ceb065add099f37b4874c85bd275014' && \ pip install 'ludwig[full]'==$VERSION && \ pip uninstall -y matplotlib && \ pip install matplotlib==3.8.3 && \ pip cache purge RUN apt-get purge -y build-essential cmake && apt-get -y autoremove && apt-get clean