chore: Update nix workflow and flake.lock

- Update the version of `cachix/install-nix-action` to v27 in Nix workflow
- Add setup for Attic cache and enable magic Nix cache in the workflow
- Update `flake.lock`
- Remove container build and push

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-07-01 12:36:33 +02:00
parent da3092895b
commit c301e57b63
Signed by: harald
GPG key ID: F519A1143B3FBE32
4 changed files with 35 additions and 54 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" ];
};
}