feat(hermes): add chromium for local browser tool

- Create custom Dockerfile extending nousresearch/hermes-agent with chromium installed
- Update compose.yml to build from local Dockerfile instead of pulling image
- Enables browser tool to work without Browserbase cloud service
This commit is contained in:
Thierry Pouplier
2026-04-29 16:48:08 +00:00
parent fb0f2cbe84
commit b5030df475
2 changed files with 13 additions and 1 deletions

View File

@@ -26,7 +26,9 @@ services:
- "traefik.http.routers.webui-https.tls.certresolver=njalla"
hermes:
image: nousresearch/hermes-agent:latest
build:
context: ./hermes
dockerfile: Dockerfile
container_name: hermes
restart: always
# Gateway run enables the internal API server on port 8642

10
ai/hermes/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nousresearch/hermes-agent:latest
# Install Chromium for browser tool
RUN apt-get update && apt-get install -y --no-install-recommends \
chromium \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
# Set environment variable for Chromium path
ENV CHROME_EXECUTABLE=/usr/bin/chromium