chore(deps): update nixsgx dependency

Get rid of the snowfall lib, because it makes life harder
for this very small project.

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-06-07 16:49:28 +02:00
parent 752cdb65bd
commit 3c72d34e02
Signed by: harald
GPG key ID: F519A1143B3FBE32
5 changed files with 97 additions and 66 deletions

View file

@ -1,26 +0,0 @@
{ pkgs
, vat
, vault
, ...
}:
pkgs.dockerTools.buildLayeredImage {
name = "vault-auth-tee";
tag = "test";
config.Entrypoint = [ "/bin/sh" ];
contents = pkgs.buildEnv {
name = "image-root";
paths = with pkgs.dockerTools; [
vat.vault-auth-tee
vat.vault-auth-tee.sha
vault
usrBinEnv
binSh
caCertificates
fakeNss
];
pathsToLink = [ "/bin" "/etc" "/share" ];
};
}