Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .hadolint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ ignored:
# which hadolint cannot see when linting a child Dockerfile
- DL3045 # COPY to a relative destination without WORKDIR set
- SC3010 # [[ ]] undefined in POSIX sh (RUN uses bash)
- SC3011 # here-strings undefined in POSIX sh (RUN uses bash)
- DL3066 # Non-numeric user id (USER root)
3 changes: 2 additions & 1 deletion python-pytorch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ USER root

RUN if ! [[ -z "${CUDA_VERSION}" ]]; then \
# CUDA support
uv pip install --system --no-cache torch torchvision torchaudio; \
CUDA_MAJOR_MINOR=$(awk -F. '{print $1 $2}' <<< "$CUDA_VERSION") && \
uv pip install --system --no-cache torch torchvision torchaudio --index-url "https://download.pytorch.org/whl/cu${CUDA_MAJOR_MINOR}"; \
else \
# CPU only
uv pip install --system --no-cache torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu; \
Expand Down
2 changes: 1 addition & 1 deletion versions.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Updated by Renovate, which also keeps the ARG defaults of the Dockerfiles in sync.

BASE_IMAGE_CPU="ubuntu:24.04"
BASE_IMAGE_GPU="nvidia/cuda:12.6.3-cudnn-devel-ubuntu24.04"
BASE_IMAGE_GPU="nvidia/cuda:13.2.1-cudnn-devel-ubuntu24.04"

PYTHON_VERSION_1="3.14.7"
PYTHON_VERSION_2="3.13.15"
Expand Down
Loading