add schemas and swap browser_use_runner in docker with browser and now agent use skill from the other container

This commit is contained in:
Кобылкевич Фёдор 2026-04-06 23:08:03 +03:00
parent 480dfcd36e
commit 890d492de0
12 changed files with 173 additions and 6857 deletions

View file

@ -4,6 +4,8 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
chromium \
python3 \
python3-pip \
xvfb \
fluxbox \
x11vnc \
@ -19,9 +21,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
WORKDIR /src
RUN mkdir -p /src/browser_data
RUN python3 -m pip install --no-cache-dir --break-system-packages \
"browser-use>=0.12.5" \
"langchain-openai>=0.3.0"
COPY entrypoint.sh /entrypoint.sh
COPY browser_use_runner.py /src/browser_use_runner.py
RUN chmod +x /entrypoint.sh
EXPOSE 6080 9222
EXPOSE 6080 9222 8787
ENTRYPOINT ["/entrypoint.sh"]