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