Mercurial > repos > goeckslab > ludwig_config_generator
diff Docker/galaxy_ludwig/Dockerfile @ 4:36c5fcc49286 draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Ludwig.git commit 4dc221b2fa9717552787f0985ad3fc3df4460158
author | goeckslab |
---|---|
date | Sat, 21 Jun 2025 15:05:41 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Docker/galaxy_ludwig/Dockerfile Sat Jun 21 15:05:41 2025 +0000 @@ -0,0 +1,16 @@ +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 +