mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00

* create containers with nix * updated README.md * added SPDX license headers Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
16 lines
333 B
Nix
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" ]; };
|
|
}
|