add ca certificates to the OCI image
Without this, checking the authority of TLS certificates fails, making Conduit (rightly) refuse to connect to anything.
This commit is contained in:
@@ -167,6 +167,9 @@
|
|||||||
pkgs.dockerTools.buildImage {
|
pkgs.dockerTools.buildImage {
|
||||||
name = package.pname;
|
name = package.pname;
|
||||||
tag = "next";
|
tag = "next";
|
||||||
|
copyToRoot = [
|
||||||
|
pkgs.dockerTools.caCertificates
|
||||||
|
];
|
||||||
config = {
|
config = {
|
||||||
# Use the `tini` init system so that signals (e.g. ctrl+c/SIGINT)
|
# Use the `tini` init system so that signals (e.g. ctrl+c/SIGINT)
|
||||||
# are handled as expected
|
# are handled as expected
|
||||||
|
|||||||
Reference in New Issue
Block a user