Mercurial > repos > goeckslab > ludwig_hyperopt
comparison Docker/galaxy_ludwig_ray_gpu/Dockerfile @ 4:a1b91224afb9 draft
planemo upload for repository https://github.com/goeckslab/Galaxy-Ludwig.git commit 4dc221b2fa9717552787f0985ad3fc3df4460158
| author | goeckslab |
|---|---|
| date | Sat, 21 Jun 2025 15:06:37 +0000 |
| parents | |
| children | 8f74efef9882 |
comparison
equal
deleted
inserted
replaced
| 3:fed9b5eaa829 | 4:a1b91224afb9 |
|---|---|
| 1 FROM ludwigai/ludwig-ray-gpu | |
| 2 | |
| 3 USER root | |
| 4 | |
| 5 # there is an error with the kubernetes-xenial repo | |
| 6 RUN sed -i '/^deb .*kubernetes-xenial/ s/^/#/' /etc/apt/sources.list.d/kubernetes.list || true | |
| 7 | |
| 8 RUN apt-get -y update && apt-get install -y unzip && \ | |
| 9 apt-get clean && \ | |
| 10 rm -rf /var/lib/apt/lists/* | |
| 11 | |
| 12 RUN pip install -U pip | |
| 13 | |
| 14 RUN pip install --no-cache-dir 'git+https://github.com/goeckslab/model-unpickler.git' && \ | |
| 15 pip install --no-cache-dir 'git+https://github.com/goeckslab/smart-report.git@17df590f3ceb065add099f37b4874c85bd275014' | |
| 16 | |
| 17 RUN useradd -m -s /bin/bash nonrootuser | |
| 18 | |
| 19 USER nonrootuser |
