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
2 changes: 1 addition & 1 deletion BrowserUseAgent/docker_compose/intel/hpu/gaudi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ For the default deployment, the following 10 containers should have started:
```
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
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
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
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
```

### Test the Pipeline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ x-common-environment:

services:
vllm-gaudi-server:
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-1.22.0}
image: opea/vllm-gaudi:1.22.0
container_name: vllm-gaudi-server
ports:
- ${LLM_ENDPOINT_PORT:-8008}:80
Expand Down
7 changes: 0 additions & 7 deletions BrowserUseAgent/docker_image_build/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,3 @@ services:
context: ../
dockerfile: ./Dockerfile
image: ${REGISTRY:-opea}/browser-use-agent:${TAG:-latest}

vllm-gaudi:
build:
context: vllm-fork
dockerfile: ./docker/Dockerfile.hpu
extends: browser-use-agent
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}
3 changes: 0 additions & 3 deletions BrowserUseAgent/tests/test_compose_on_gaudi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ function build_docker_images() {
docker build --no-cache -t ${REGISTRY}/comps-base:${TAG} --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile .
popd && sleep 1s

VLLM_FORK_VER=v0.9.0.1+Gaudi-1.22.0
git clone --depth 1 -b ${VLLM_FORK_VER} --single-branch https://github.com/HabanaAI/vllm-fork.git

echo "Build all the images with --no-cache, check docker_image_build.log for details..."
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

Expand Down
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