File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: PMPL-1.0-or-later
2+ # stapeln.toml — Layer-based container build for session-sentinel
3+ #
4+ # stapeln builds containers as composable layers (German: "to stack").
5+ # Each layer is independently cacheable, verifiable, and signable.
6+
7+ [metadata ]
8+ name = " session-sentinel"
9+ version = " 0.1.0"
10+ description = " Session Sentinel — Deno-based session monitoring and management tool"
11+ author = " Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"
12+ license = " PMPL-1.0-or-later"
13+ registry = " ghcr.io/hyperpolymath"
14+
15+ [build ]
16+ containerfile = " Containerfile"
17+ context = " ."
18+ runtime = " podman"
19+
20+ # Layer definitions — Deno hunt pattern
21+ [layers .base ]
22+ description = " Chainguard wolfi-base image"
23+ from = " cgr.dev/chainguard/wolfi-base:latest"
24+ cache = true
25+ verify = true
26+
27+ [layers .app ]
28+ description = " Deno runtime and bundled application binary"
29+ extends = " base"
30+ cache = false
31+
32+ [layers .runtime ]
33+ description = " Minimal static runtime image"
34+ from = " cgr.dev/chainguard/static:latest"
35+ cache = true
36+ verify = true
You can’t perform that action at this time.
0 commit comments