Docker image for the use of Deep Learning Python packages in FH DaSL's WILDS
1.4K
This directory contains Docker images for deep learning with Python, providing a CUDA-enabled environment with popular deep learning frameworks and scientific computing libraries.
latest ( Dockerfile | Vulnerability Report )1.0 ( Dockerfile | Vulnerability Report )These Docker images are built from NVIDIA's CUDA 11.8.0 with cuDNN 8 base image and include:
The images are designed to provide a comprehensive environment for deep learning and data science tasks with GPU acceleration.
docker pull getwilds/python-dl:latest
# or
docker pull getwilds/python-dl:1.0
# Alternatively, pull from GitHub Container Registry
docker pull ghcr.io/getwilds/python-dl:latest
apptainer pull docker://getwilds/python-dl:latest
# or
apptainer pull docker://getwilds/python-dl:1.0
# Alternatively, pull from GitHub Container Registry
apptainer pull docker://ghcr.io/getwilds/python-dl:latest
# Docker (using a hypothetical script called "train_model.py")
docker run --gpus all --rm -v /path/to/project:/project getwilds/python-dl:latest python /project/train_model.py
# Apptainer
apptainer run --nv --bind /path/to/project:/project docker://getwilds/python-dl:latest python /project/train_model.py
# Apptainer (local SIF file)
apptainer run --nv --bind /path/to/project:/project python-dl_latest.sif python /project/train_model.py
To use GPU acceleration with this image, ensure that:
--gpus all flag when running the containerThe python-dl Docker images include:
These images are regularly scanned for vulnerabilities using Docker Scout. However, due to the nature of deep learning frameworks and their dependencies, some Docker images may contain components with known vulnerabilities (CVEs).
Use at your own risk: While we strive to minimize security issues, these images are primarily designed for research and analytical workflows in controlled environments.
For the latest security information about this image, please check the CVEs_*.md files in this directory, which are automatically updated through our GitHub Actions workflow. If a particular vulnerability is of concern, please file an issue in the GitHub repo citing which CVE you would like to be addressed.
The Dockerfile follows these main steps:
These Dockerfiles are maintained in the WILDS Docker Library repository.
Content type
Image
Digest
sha256:50f7b6566…
Size
8.6 GB
Last updated
12 months ago
docker pull getwilds/python-dl