From 8963eb0c4f1220dd515ac6ed7a2a8f1de26655ae Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Wed, 8 Jan 2025 15:23:03 -0500 Subject: [PATCH] fix: try redundant npm install after build stage --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index bf6141142..a474aca51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,4 +71,8 @@ HEALTHCHECK --interval=30s --timeout=3s \ ENV NO_VAR_RUNTUME=1 +# Attempt to fix `lru-cache@11.0.2` missing after build stage +# by doing a redundant `npm install` at this stage +RUN npm install + CMD ["npm", "start"]