add ca certificates to the OCI image
Without this, checking the authority of TLS certificates fails, making Conduit (rightly) refuse to connect to anything. Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
81a4f9e539
commit
c329eb197d
1 changed files with 3 additions and 0 deletions
|
@ -177,6 +177,9 @@
|
||||||
pkgs.dockerTools.buildImage {
|
pkgs.dockerTools.buildImage {
|
||||||
name = package.pname;
|
name = package.pname;
|
||||||
tag = "main";
|
tag = "main";
|
||||||
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue