From b539e8933e16ebd714093cd2c35022b55238bd7b Mon Sep 17 00:00:00 2001 From: Roger Far Date: Wed, 11 Feb 2026 19:50:14 -0700 Subject: [PATCH] no message --- .github/workflows/build-release.yaml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index 8453c6e..8e1f79c 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -28,11 +28,11 @@ jobs: - name: Set up .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: '9' + dotnet-version: '10' - name: Install Frontend Dependencies working-directory: client - run: npm ci + run: npm install - name: Build Frontend working-directory: client diff --git a/Dockerfile b/Dockerfile index e60b133..7997e38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY root ./root RUN \ cd client && \ echo "**** Building Code ****" && \ - npm ci && \ + npm install && \ npx ng build --output-path=out RUN ls -FCla /appclient/root