Project Overview#

About The Project#

This project ships ready-to-build Dockerfiles for multiple targets in a single repo — plus the reusable tooling consumer projects build on: PowerShell modules (windows/scripts/modules/), bash libraries (linux/scripts/lib/: agentic-loop, app-runner), cross-platform shared data (shared/agentic-loop/prompts/), and CI composite actions (.github/actions/, see its README). The AGENTS.md Repo Map is the authoritative index of that half of the repo.

Container registry: ghcr.io/kataglyphis/kataglyphis_beschleuniger — published multi-arch images (Linux base, Torch add-on, webserver) and Windows build image.

Published Images and Tag Hints#

Image

Platforms

Tag examples

Description

ghcr.io/kataglyphis/kataglyphis_beschleuniger

linux/amd64, linux/arm64, linux/riscv64

latest-cross

Current cross-lane release. Built via digest-pinned stage chain (base compiler sdk media android package torch wrapper manifest).

ghcr.io/kataglyphis/kataglyphis_beschleuniger

linux/amd64, linux/arm64, linux/riscv64

latest

Legacy QEMU/binfmt multi-arch image built with --platform linux/amd64,linux/arm64,linux/riscv64.

ghcr.io/kataglyphis/kataglyphis_beschleuniger

linux/amd64

cross-compiler-amd64, cross-sdk-<arch>, cross-media-<arch>, cross-android-<arch>

Cross-lane intermediate images (amd64-hosted, cross-compiled for target arches).

ghcr.io/kataglyphis/kataglyphis_beschleuniger

per-arch native

latest-cross-base-<arch>, latest-cross-package-<arch>, latest-cross-<arch>

Runtime lane per-arch images assembled into the latest-cross manifest.

ghcr.io/kataglyphis/kataglyphis_beschleuniger:webserver

linux/amd64, linux/arm64 (as pushed)

webserver, webserver-<git-sha>

Minimal nginx static webserver image.

ghcr.io/kataglyphis/kataglyphis_beschleuniger:winamd64

windows/amd64

winamd64

Windows Server Core 2025 build image with MSVC, LLVM/Clang, Vulkan SDK, Rust, Flutter, WiX.

Images in This Repository#

  • 🔥 linux/Dockerfile.torch: Final Linux wrapper image — Torch/Python layer + runtime scripts + entrypoint.

  • 🌐 linux/webserver/Dockerfile: Minimal nginx static webserver (config at linux/webserver/nginx.conf).

  • 🪟 windows/Dockerfile.base, windows/Dockerfile.nvidia (optional GPU layer), windows/Dockerfile.toolchain, windows/Dockerfile.media-merge-builder (+ per-branch media builders), windows/Dockerfile (driven by windows/build.ps1): Windows Server Core 2025 build image with MSVC Build Tools, LLVM/Clang, Vulkan SDK, Rust, Flutter, WiX.

Linux Image Chain#

The Linux images build as a chain of separate Dockerfiles (one per stage, for layer caching), ending in the linux/Dockerfile.torch wrapper. This page does not enumerate the stages: the authoritative per-stage table (Dockerfile → FROM → produced tag) is AGENTS.md § Container Architecture, and the README’s repo tree carries the annotated per-stage contents. Per-stage mechanics live in Linux build basics and Linux cross builds — including Dockerfile.sdk’s reuse for amd64-hosted cross SDK artifact builds via BUILD_MODE=cross and Dockerfile.package’s clean-base runtime assembly in both native and cross flows.

What You Get#

  • ✅ Multi-arch builds via buildx/nerdctl.

  • 🎮 Vulkan + toolchains ready for GPU passthrough.

  • 🧠 Torch/Python runtime included in the final Linux image chain.

  • 📡 Ready-to-serve static web content with nginx.

Key Features#

Category

Feature

Status

Cross-build

Multi-arch cross toolchain (amd64, arm64, riscv64)

✔️

Cross-build

Digest-pinned stage handoff

✔️

Cross-build

Runtime packaging via QEMU/binfmt

✔️

GPU acceleration

NVIDIA CUDA 13.3, cuDNN, TensorRT

✔️

GPU acceleration

DirectML (Windows, vendor-agnostic — ONNX Runtime + GenAI DML EP)

✔️

GPU acceleration

AMD MIGraphX

✔️

GPU acceleration

Vulkan SDK 1.4.357.0

✔️

Media

ONNX Runtime 1.28.0

✔️

Media

GStreamer 1.29.2, OpenCV 5.0.0, LiteRT

✔️

Media

libcamera, FFmpeg

✔️

Compiler

GCC 16.2.0, LLVM/Clang 22.1.8

✔️

Language runtime

Python 3.14.7, Node.js 26.7.0

✔️

Android

SDK 15859902, NDK 29.0.14206865

✔️

Windows

MSVC Build Tools, CUDA 13.3, GStreamer 1.29.2

✔️

Windows

Vulkan SDK 1.4.357.0, ONNX Runtime 1.28.0

✔️

Legend: ✔️ completed · 🔶 in progress · ❌ not started

See Third-Party Licenses for license information on bundled software.