Skip to content
Open
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 CodeTrans/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 20.19.0 as the base image (required for chokidar@5.0.0 compatibility)
FROM node:20.19.0

# Update package manager and install Git
RUN apt-get update -y && apt-get install -y git
Expand Down
4 changes: 2 additions & 2 deletions CodeTrans/ui/docker/Dockerfile.openEuler
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (C) 2025 Huawei Technologies Co., Ltd.
# SPDX-License-Identifier: Apache-2.0

# Use node 20.11.1 as the base image
FROM openeuler/node:20.11.1-oe2403lts
# Use node 20.19.0 as the base image
FROM openeuler/node:20.19.0-oe2403lts

# Update package manager and install Git
RUN yum update -y && \
Expand Down
4 changes: 2 additions & 2 deletions DocSum/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 20.19.0 as the base image (required for chokidar@5.0.0 compatibility)
FROM node:20.19.0

# Update package manager and install Git
RUN apt-get update -y && apt-get install -y git
Expand Down
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.11.1 as the base image
FROM node:20.11.1
# Use node 20.19.0 as the base image (required for chokidar@5.0.0 compatibility)
FROM node:20.19.0

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