Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 Translation/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.19.0 as the base image (required for chokidar@5.0.0 compatibility)
FROM node:20.19.0
# Use node 22 as the base image (required for chokidar@5.0.0 compatibility)
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment mentions chokidar@5.0.0 compatibility requirements, but this justification was originally specific to Node 20.19.0. Since the image is now being updated to Node 22, verify if this comment accurately reflects the compatibility requirements for Node 22 with chokidar@5.0.0, or update the comment to reflect the actual reason for using Node 22.

Suggested change
# Use node 22 as the base image (required for chokidar@5.0.0 compatibility)
# Use Node 22 as the base image (current LTS / stable Node.js version)

Copilot uses AI. Check for mistakes.
FROM node:22

# Update package manager and install Git
RUN apt-get update -y && apt-get install -y git
Expand Down
4 changes: 2 additions & 2 deletions VisualQnA/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

# Update package manager and install Git
RUN apt-get update -y && apt-get install -y git
Expand Down
Loading