From bedb1854f96928f6db5707dce74ea75b1445e9bd Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 25 Aug 2025 11:14:30 -0400 Subject: [PATCH] fix: Docker build failure due to missing lerna command (#5357) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: sedghi <7490180+sedghi@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6b9ccaef..c4939770e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ RUN apt-get update && apt-get install -y build-essential python3 RUN mkdir /usr/src/app WORKDIR /usr/src/app RUN npm install -g bun -# RUN npm install -g lerna@7.4.2 +RUN npm install -g lerna@7.4.2 ENV PATH=/usr/src/app/node_modules/.bin:$PATH # Do an initial install and then a final install