teepot/packages/container-verify-attestation/default.nix
Harald Hoyer 91f1612e0f
chore: cleanup and nixify
* create containers with nix
* updated README.md
* added SPDX license headers

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
2024-02-28 11:09:34 +01:00

16 lines
333 B
Nix

# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2024 Matter Labs
{ lib
, dockerTools
, teepot
, ...
}:
dockerTools.buildImage {
name = "verify-attestation";
tag = "latest";
copyToRoot = [
teepot.teepot.verify_attestation
];
config = { Cmd = [ "${teepot.teepot.verify_attestation}/bin/verify-attestation" ]; };
}