inject cacert
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful

This commit is contained in:
Quentin 2024-06-24 07:53:06 +02:00
parent e7e05ed929
commit 37a9f6fa54
Signed by: quentin
GPG key ID: E9602264D639FF68

View file

@ -12,9 +12,6 @@
system = "x86_64-linux";
overlays = [
(import "${gomod2nix}/overlay.nix")
/*(self: super: {
gomod = super.callPackage "${gomod2nix}/builder/" { };
})*/
];
};
src = ./.;
@ -38,10 +35,16 @@
platforms = platforms.linux;
};
};
container = pkgs.dockerTools.buildImage {
name = "dxflrs/guichet";
copyToRoot = pkgs.buildEnv {
name = "guichet-env";
paths = [ guichet pkgs.cacert ];
};
config = {
Entrypoint = "${guichet}/bin/guichet";
Entrypoint = "/bin/guichet";
};
};
in {