From 5d0faf52c7ea46fd5572ff153010d0b6f92a7e10 Mon Sep 17 00:00:00 2001 From: Suren K Date: Wed, 1 Oct 2025 15:05:25 -0500 Subject: [PATCH] fix: Install Angular CLI globally in Docker container - Add @angular/cli to global npm installation - Fix 'ng command not found' error during Docker build - Ensure Angular CLI is available for frontend build process - Maintain simple Dockerfile structure --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5120dd82..bd22a94e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && \ apt-get install -y maven curl && \ curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt-get install -y nodejs && \ - npm install -g yarn && \ + npm install -g yarn @angular/cli && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*