diff --git a/GraphRAG/ui/docker/Dockerfile b/GraphRAG/ui/docker/Dockerfile index c609e0d646..96a8547132 100644 --- a/GraphRAG/ui/docker/Dockerfile +++ b/GraphRAG/ui/docker/Dockerfile @@ -1,8 +1,8 @@ # Copyright (C) 2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -# Use node 20.11.1 as the base image -FROM node:20.11.1 +# Use node 22 as the base image +FROM node:22 # Update package manager and install Git RUN apt-get update -y && apt-get install -y git --no-install-recommends --fix-missing diff --git a/HybridRAG/ui/docker/Dockerfile b/HybridRAG/ui/docker/Dockerfile index 1d5115f4b5..8c3e4f8f51 100644 --- a/HybridRAG/ui/docker/Dockerfile +++ b/HybridRAG/ui/docker/Dockerfile @@ -1,8 +1,8 @@ # Copyright (C) 2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -# Use node 20.11.1 as the base image -FROM node:20.11.1 +# Use node 22 as the base image +FROM node:22 # Update package manager and install Git RUN apt-get update -y && apt-get install -y git diff --git a/PolyLingua/ui/Dockerfile b/PolyLingua/ui/Dockerfile index af9a98c0be..7085973c69 100644 --- a/PolyLingua/ui/Dockerfile +++ b/PolyLingua/ui/Dockerfile @@ -1,7 +1,7 @@ # Copyright (C) 2024 # SPDX-License-Identifier: Apache-2.0 -FROM node:18-alpine AS base +FROM node:20-alpine AS base # Install dependencies FROM base AS deps