From c59fe4cfd49a433b629ffefcb419982a025fd1f3 Mon Sep 17 00:00:00 2001 From: Simon Axelsson Date: Wed, 16 Sep 2026 14:37:13 +0200 Subject: [PATCH] fix: install tsx in runtime stage for node --import support --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4d0dae9..467c1b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,8 @@ ENV NODE_ENV=production ENV PORT=3000 ENV HOST=0.0.0.0 +RUN npm install tsx + USER node EXPOSE 3000