From 983ef8aba8053fcf5020eb0cbadeec9002ae6c05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Burzy=C5=84ski?= Date: Mon, 19 Jan 2026 12:18:35 +0000 Subject: [PATCH] Don't inherit `TMPDIR` in the Docker container (#120) --- play.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/play.ts b/play.ts index 1da406f..e02ba03 100644 --- a/play.ts +++ b/play.ts @@ -203,7 +203,9 @@ Examples: "-e", "COREPACK_ENABLE_DOWNLOAD_PROMPT=0", "-e", - `HOME=/tmp/home`, + "HOME=/tmp/home", + "-e", + "TMPDIR=/tmp", "node:24", "bash", "-c",