Mercurial > repos > goeckslab > ludwig_evaluate
comparison Docker/galaxy_ludwig/Dockerfile @ 3:777be50bc321 draft default tip
planemo upload for repository https://github.com/goeckslab/Galaxy-Ludwig.git commit 4dc221b2fa9717552787f0985ad3fc3df4460158
author | goeckslab |
---|---|
date | Sat, 21 Jun 2025 15:04:47 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:e55790a3e8a7 | 3:777be50bc321 |
---|---|
1 FROM python:3.10-slim | |
2 | |
3 ARG VERSION=0.10.3 | |
4 | |
5 RUN apt-get -y update && apt-get install -y --no-install-recommends build-essential cmake git unzip | |
6 | |
7 RUN pip install -U pip && \ | |
8 pip install 'git+https://github.com/goeckslab/model-unpickler.git' && \ | |
9 pip install 'git+https://github.com/goeckslab/smart-report.git@17df590f3ceb065add099f37b4874c85bd275014' && \ | |
10 pip install 'ludwig[full]'==$VERSION && \ | |
11 pip uninstall -y matplotlib && \ | |
12 pip install matplotlib==3.8.3 && \ | |
13 pip cache purge | |
14 | |
15 RUN apt-get purge -y build-essential cmake && apt-get -y autoremove && apt-get clean | |
16 |