Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GraphRAG/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Comment thread
ZePan110 marked this conversation as resolved.

# Update package manager and install Git
RUN apt-get update -y && apt-get install -y git --no-install-recommends --fix-missing
Expand Down
4 changes: 2 additions & 2 deletions HybridRAG/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Comment thread
ZePan110 marked this conversation as resolved.

# Update package manager and install Git
RUN apt-get update -y && apt-get install -y git
Expand Down
2 changes: 1 addition & 1 deletion PolyLingua/ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading