mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00
12 lines
243 B
Nix
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" ]; };
|
|
}
|