From 286a7df3740527204e043825d3670ccb44a2a60c Mon Sep 17 00:00:00 2001 From: Teyras Date: Sat, 15 Apr 2017 16:37:46 +0200 Subject: [PATCH] add a page on runtime environments --- RuntimeEnvironments.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 RuntimeEnvironments.md diff --git a/RuntimeEnvironments.md b/RuntimeEnvironments.md new file mode 100644 index 0000000..9fef874 --- /dev/null +++ b/RuntimeEnvironments.md @@ -0,0 +1,11 @@ +# Runtime Environments + +This page contains notes about using various runtime environments inside Isolate +sandboxes. + +## Python + +Due to a [Python bug](http://bugs.python.org/issue10496), the interpreter +requires the `$HOME` variable to be set to something. Otherwise, it tries to +look up the UID used by Isolate in `/etc/passwd` and fails. Setting `HOME=/box` +seems to work.