rust backend, example nix container building

This commit is contained in:
2026-01-13 00:08:58 -05:00
commit 7e5db6b233
11 changed files with 972 additions and 0 deletions

11
container-config.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> { }
, pkgsLinux ? import <nixpkgs> { system = "x86_64-linux"; }
}:
pkgs.dockerTools.buildImage {
name = "site";
config = {
Cmd = [ "${pkgsLinux.hello}/bin/hello" ];
};
}