Skip to content

Instantly share code, notes, and snippets.

View stelterlab's full-sized avatar

Christian Otto Stelter stelterlab

View GitHub Profile
@stelterlab
stelterlab / spark.Dockerfile
Last active March 17, 2026 10:25
llama.cpp Dockerfile for DGX Spark / GB10
ARG UBUNTU_VERSION=24.04
# This needs to generally match the container host's environment.
ARG CUDA_VERSION=13.1.1
# Target the CUDA build image
ARG BASE_CUDA_DEV_CONTAINER=nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${UBUNTU_VERSION}
ARG BASE_CUDA_RUN_CONTAINER=nvidia/cuda:${CUDA_VERSION}-runtime-ubuntu${UBUNTU_VERSION}
FROM ${BASE_CUDA_DEV_CONTAINER} AS build