Mercurial > repos > goeckslab > bagging_tool
comparison Docker/Dockerfile @ 0:e6e9ea0703ef draft default tip
planemo upload for repository https://github.com/goeckslab/gleam.git commit 783551569c645073698fce50f1ed9c4605b3e65a
author | goeckslab |
---|---|
date | Thu, 19 Jun 2025 23:31:55 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e6e9ea0703ef |
---|---|
1 # Base image with PyTorch + CUDA 11.7 + cuDNN 8 | |
2 FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime | |
3 | |
4 USER root | |
5 | |
6 # Install system libs needed by fastparquet | |
7 RUN apt-get update && \ | |
8 apt-get install -y --no-install-recommends \ | |
9 libsnappy-dev \ | |
10 liblz4-dev \ | |
11 && rm -rf /var/lib/apt/lists/* | |
12 | |
13 RUN pip install --upgrade pip && \ | |
14 pip install --no-cache-dir \ | |
15 pandas \ | |
16 fastparquet | |
17 | |
18 RUN useradd -m -s /bin/bash nonrootuser | |
19 | |
20 USER nonrootuser |