We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9f1bb commit 7a28091Copy full SHA for 7a28091
1 file changed
Dockerfile
@@ -13,7 +13,7 @@
13
# limitations under the License.
14
15
# Use node:lts-alpine for better compatibility and smaller size
16
-FROM node:20.18.0-alpine3.20 AS ui-build-env
+FROM node:22-alpine AS ui-build-env
17
WORKDIR /app
18
19
# Install build dependencies needed for native modules
@@ -23,10 +23,7 @@ RUN apk add --no-cache python3 make g++
23
COPY ./web/package*.json ./
24
COPY ./web/.npmrc ./
25
26
-RUN npm install
27
-
28
-# Install dependencies with specific flags to handle optional deps and architecture issues
29
-RUN npm ci --prefer-offline --no-audit --no-fund --no-optional
+RUN npm ci
30
31
# Copy the Vue app files
32
COPY ./web .
0 commit comments