Skip to content

Commit 052c9be

Browse files
hyperpolymathclaude
andcommitted
chore: add stapeln.toml layer-based container definition
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3e417e5 commit 052c9be

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

stapeln.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)