Strips runtime packages (nodejs_22, kubectl, jq, git, emacs, tsx, tea, pythonEnv, qmd) from the Docker image contents, reducing image size from ~2.7GB to ~1.5GB. Key changes: - Removed 9 runtime packages from contents (moved to openclaw-runtime-closure) - Removed pythonEnv let binding and qmd parameter (no longer needed in image) - Added OPENCLAW_RUNTIME_CLOSURE env var (bakes closure path for init container) - Added runtime closure bin dir to PATH (resolves after PVC population) - Added curl to contents (needed by init container for Harmonia health checks) - CI: added openclaw-runtime-closure to build-and-cache PACKAGES array - CI: added second sed command for CronJob image tag update - CI: removed inherit qmd from openclaw-image callPackage (qmd now in runtime closure) Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
15 lines
680 B
Nix
15 lines
680 B
Nix
{ pkgs, ... }:
|
|
rec {
|
|
tea-rbw = pkgs.callPackage ./tea-rbw { };
|
|
app-launcher-server = pkgs.callPackage ./app-launcher-server { };
|
|
claude-code = pkgs.callPackage ./claude-code { };
|
|
mcrcon-rbw = pkgs.callPackage ./mcrcon-rbw { };
|
|
rclone-torbox-setup = pkgs.callPackage ./rclone-torbox-setup { };
|
|
pi-coding-agent = pkgs.callPackage ./pi-coding-agent { };
|
|
nextcloud-talk-desktop = pkgs.callPackage ./nextcloud-talk-desktop { };
|
|
opencode = pkgs.callPackage ./opencode { };
|
|
qmd = pkgs.callPackage ./qmd { };
|
|
openclaw-image = pkgs.callPackage ./openclaw-image { };
|
|
openclaw-runtime-closure = pkgs.callPackage ./openclaw-image/runtime-closure.nix { inherit qmd; };
|
|
}
|