ci: add cuda13.0 base image

Include support for cross-compiling to aarch64.
This commit is contained in:
Brad King
2025-09-18 17:42:04 -04:00
parent 72b8814f85
commit 87f60d81b9
5 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# syntax=docker/dockerfile:1
ARG BASE_IMAGE=kitware/nvidia-cuda:13.0.1-devel-ubuntu24.04
FROM ${BASE_IMAGE} AS apt-config
ADD https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/cross-linux-sbsa/cuda-keyring_1.1-1_all.deb /root/
RUN --mount=type=tmpfs,target=/var/log \
dpkg -i /root/cuda-keyring_1.1-1_all.deb \
&& rm /root/cuda-keyring_1.1-1_all.deb
FROM apt-config AS apt-cache
# Populate APT cache w/ the fresh metadata and prefetch packages.
# Use an empty `docker-clean` file to "hide" the image-provided
# file to disallow removing packages after `apt-get` operations.
RUN --mount=type=tmpfs,target=/var/log \
--mount=type=bind,source=docker-clean,target=/etc/apt/apt.conf.d/docker-clean \
--mount=type=bind,source=deps_packages.lst,target=/root/deps_packages.lst \
apt-get update \
&& apt-get --download-only -y install $(grep -h '^[^#]\+$' /root/*.lst)
FROM apt-config
MAINTAINER Brad King <brad.king@kitware.com>
RUN --mount=type=bind,source=install_deps.sh,target=/root/install_deps.sh \
--mount=type=bind,source=deps_packages.lst,target=/root/deps_packages.lst \
--mount=type=bind,source=dpkg-exclude,target=/etc/dpkg/dpkg.cfg.d/exclude \
--mount=type=bind,source=docker-clean,target=/etc/apt/apt.conf.d/docker-clean \
--mount=type=cache,from=apt-cache,source=/var/lib/apt/lists,target=/var/lib/apt/lists \
--mount=type=cache,from=apt-cache,source=/var/cache/apt,target=/var/cache/apt,sharing=private \
--mount=type=tmpfs,target=/var/log \
--mount=type=tmpfs,target=/tmp \
sh /root/install_deps.sh

View File

@@ -0,0 +1,11 @@
# Host tools
curl
git
# Compilers
g++
g++-aarch64-linux-gnu
# CUDA Extras
cuda-cross-sbsa-13-0
cuda-opencl-dev-13-0

View File

View File

@@ -0,0 +1,21 @@
# Drop all man pages
path-exclude=/usr/share/man/*
# Drop all info pages
path-exclude=/usr/share/info/*
# Drop all README files except from the some packages
path-exclude=/usr/**/*README*
path-include=/usr/share/devscripts/templates/README.mk-build-deps
path-include=/usr/share/equivs/template/debian/README.Debian.in
# Drop all translations
path-exclude=/usr/share/locale/*/LC_MESSAGES/*.mo
# Drop all documentation ...
path-exclude=/usr/share/doc/*
path-exclude=/usr/share/doc-base/*
path-exclude=/usr/share/gtk-doc/*
# Per package excludes
path-exclude=/usr/share/gnupg/help.*.txt

View File

@@ -0,0 +1,5 @@
#!/bin/sh
set -e
apt-get install -y $(grep '^[^#]\+$' /root/deps_packages.lst)