teepot/packages/container-verify-attestation/default.nix
Harald Hoyer d8110f3720
feat: build and push container-verify-attestation
Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
2024-02-14 16:01:59 +01:00

12 lines
243 B
Nix

{ lib
, dockerTools
, teepot
, ...
}:
dockerTools.buildImage {
name = "verify-attestation";
copyToRoot = [
teepot.teepot.verify_attestation
];
config = { Cmd = [ "${teepot.teepot.verify_attestation}/bin/verify-attestation" ]; };
}