Skip to content

Commit 0b0d41a

Browse files
committed
fix: update Dockerfile to disable anonymized telemetry and adjust environment variables; remove version declaration from __init__.py
1 parent 23ec008 commit 0b0d41a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ COPY --from=builder /app /app
5757
# Set proper permissions
5858
RUN chmod -R 755 /python /app
5959

60-
ENV PATH="/app/.venv/bin:$PATH" \
60+
ENV ANONYMIZED_TELEMETRY=false \
61+
PATH="/app/.venv/bin:$PATH" \
6162
DISPLAY=:0 \
6263
CHROME_BIN=/usr/bin/chromium \
6364
CHROMIUM_FLAGS="--no-sandbox --headless --disable-gpu --disable-software-rasterizer --disable-dev-shm-usage"

src/browser_use_mcp_server/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@
44
This package provides a Model-Control-Protocol (MCP) server for browser automation
55
using the browser_use library.
66
"""
7-
8-
__version__ = "0.0.0"

0 commit comments

Comments
 (0)