feat: build and push container-verify-attestation

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-02-14 15:40:59 +01:00
parent 671aacd739
commit d8110f3720
Signed by: harald
GPG key ID: F519A1143B3FBE32
2 changed files with 36 additions and 4 deletions

View file

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