Skip to content

Commit b693bc8

Browse files
Fix build issues (#2340)
Signed-off-by: ZePan110 <ze.pan@intel.com> Signed-off-by: zhihang <zhihangdeng@link.cuhk.edu.cn> Co-authored-by: zhihang <zhihangdeng@link.cuhk.edu.cn>
1 parent cf22698 commit b693bc8

8 files changed

Lines changed: 10 additions & 20 deletions

File tree

BrowserUseAgent/docker_compose/intel/hpu/gaudi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ For the default deployment, the following 10 containers should have started:
6868
```
6969
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
7070
96cb590c749c opea/browser-use-agent:latest "python browser_use_…" 9 seconds ago Up 8 seconds 0.0.0.0:8022->8022/tcp, :::8022->8022/tcp browser-use-agent-server
71-
8072e1c33a4b opea/vllm-gaudi:latest "python3 -m vllm.ent…" 9 seconds ago Up 8 seconds (health: starting) 0.0.0.0:8008->80/tcp, [::]:8008->80/tcp vllm-gaudi-server
71+
8072e1c33a4b opea/vllm-gaudi:1.22.0 "python3 -m vllm.ent…" 9 seconds ago Up 8 seconds (health: starting) 0.0.0.0:8008->80/tcp, [::]:8008->80/tcp vllm-gaudi-server
7272
```
7373

7474
### Test the Pipeline

BrowserUseAgent/docker_compose/intel/hpu/gaudi/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ x-common-environment:
99

1010
services:
1111
vllm-gaudi-server:
12-
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-1.22.0}
12+
image: opea/vllm-gaudi:1.22.0
1313
container_name: vllm-gaudi-server
1414
ports:
1515
- ${LLM_ENDPOINT_PORT:-8008}:80

BrowserUseAgent/docker_image_build/build.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,3 @@ services:
1313
context: ../
1414
dockerfile: ./Dockerfile
1515
image: ${REGISTRY:-opea}/browser-use-agent:${TAG:-latest}
16-
17-
vllm-gaudi:
18-
build:
19-
context: vllm-fork
20-
dockerfile: ./docker/Dockerfile.hpu
21-
extends: browser-use-agent
22-
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}

BrowserUseAgent/tests/test_compose_on_gaudi.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ function build_docker_images() {
3131
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
3232
popd && sleep 1s
3333

34-
VLLM_FORK_VER=v0.9.0.1+Gaudi-1.22.0
35-
git clone --depth 1 -b ${VLLM_FORK_VER} --single-branch https://github.com/HabanaAI/vllm-fork.git
36-
3734
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
3835
docker compose -f build.yaml build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy > ${LOG_PATH}/docker_image_build.log
3936

CodeTrans/ui/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
# Use node 20.11.1 as the base image
5-
FROM node:20.11.1
4+
# Use node 20.19.0 as the base image (required for chokidar@5.0.0 compatibility)
5+
FROM node:20.19.0
66

77
# Update package manager and install Git
88
RUN apt-get update -y && apt-get install -y git

CodeTrans/ui/docker/Dockerfile.openEuler

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Copyright (C) 2025 Huawei Technologies Co., Ltd.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
# Use node 20.11.1 as the base image
5-
FROM openeuler/node:20.11.1-oe2403lts
4+
# Use node 20.19.0 as the base image
5+
FROM openeuler/node:20.19.0-oe2403lts
66

77
# Update package manager and install Git
88
RUN yum update -y && \

DocSum/ui/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
# Use node 20.11.1 as the base image
5-
FROM node:20.11.1
4+
# Use node 20.19.0 as the base image (required for chokidar@5.0.0 compatibility)
5+
FROM node:20.19.0
66

77
# Update package manager and install Git
88
RUN apt-get update -y && apt-get install -y git

Translation/ui/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
# Use node 20.11.1 as the base image
5-
FROM node:20.11.1
4+
# Use node 20.19.0 as the base image (required for chokidar@5.0.0 compatibility)
5+
FROM node:20.19.0
66

77
# Update package manager and install Git
88
RUN apt-get update -y && apt-get install -y git

0 commit comments

Comments
 (0)