add ca certificates to the OCI image

Without this, checking the authority of TLS certificates fails, making
Conduit (rightly) refuse to connect to anything.
merge-requests/594/head
Charles Hall 5 months ago
parent 4da8c7e282
commit dffd771e7c
No known key found for this signature in database
GPG Key ID: 7B8E0645816E07CF

@ -167,6 +167,9 @@
pkgs.dockerTools.buildImage {
name = package.pname;
tag = "next";
copyToRoot = [
pkgs.dockerTools.caCertificates
];
config = {
# Use the `tini` init system so that signals (e.g. ctrl+c/SIGINT)
# are handled as expected

Loading…
Cancel
Save