diff --git a/nsjail/download.config.proto b/nsjail/download.config.proto index 0c27883a99..f2cf7b1383 100644 --- a/nsjail/download.config.proto +++ b/nsjail/download.config.proto @@ -50,6 +50,13 @@ mount { is_bind: true } +mount { + src: "/etc/pki" + dst: "/etc/pki" + is_bind: true + mandatory: false +} + mount { src: "/etc/ca-certificates" dst: "/etc/ca-certificates" diff --git a/nsjail/run.deno.config.proto b/nsjail/run.deno.config.proto index 4144b4a685..03e9275b89 100644 --- a/nsjail/run.deno.config.proto +++ b/nsjail/run.deno.config.proto @@ -85,6 +85,13 @@ mount { is_bind: true } +mount { + src: "/etc/pki" + dst: "/etc/pki" + is_bind: true + mandatory: false +} + mount { src: "/etc/resolv.conf" dst: "/etc/resolv.conf" diff --git a/nsjail/run.python3.config.proto b/nsjail/run.python3.config.proto index 1f27c4e7aa..524e3a9bf0 100644 --- a/nsjail/run.python3.config.proto +++ b/nsjail/run.python3.config.proto @@ -96,6 +96,13 @@ mount { is_bind: true } +mount { + src: "/etc/pki" + dst: "/etc/pki" + is_bind: true + mandatory: false +} + mount { src: "/etc/resolv.conf" dst: "/etc/resolv.conf"