From 1614fdec8668f9ec6be0e060a318e26fb85fea5b Mon Sep 17 00:00:00 2001 From: Orce MARINKOVSKI Date: Wed, 25 Dec 2024 12:19:11 +0000 Subject: [PATCH] add the angular cli within the Dockerfile --- .devcontainer/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2aecc45a1..ec0578490 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -148,10 +148,9 @@ RUN --mount=type=cache,target=/root/.cache/pip/,id=pip-cache \ set -eux \ && echo "Installing build system packages" \ && apt-get update \ - && apt-get install --yes --quiet ${BUILD_PACKAGES} - -RUN set -eux \ - && npm update npm -g + && apt-get install --yes --quiet ${BUILD_PACKAGES} \ + && npm update npm -g \ + && npm install -g @angular/cli@~18.2.11 # add users, setup scripts # Mount the compiled frontend to expected location