integration with CloakBrowser
This commit is contained in:
parent
b90fb85ab3
commit
f45b81aff1
6 changed files with 158 additions and 25 deletions
|
|
@ -16,6 +16,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||
procps \
|
||||
curl \
|
||||
ca-certificates \
|
||||
fonts-noto-color-emoji \
|
||||
fonts-freefont-ttf \
|
||||
fonts-unifont \
|
||||
fonts-ipafont-gothic \
|
||||
fonts-wqy-zenhei \
|
||||
fonts-tlwg-loma-otf \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /src
|
||||
|
|
@ -23,12 +29,16 @@ 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"
|
||||
"langchain-openai>=0.3.0" \
|
||||
"cloakbrowser[geoip]>=0.3.0"
|
||||
|
||||
RUN python3 -m cloakbrowser install
|
||||
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
COPY cloak_browser_launcher.py /src/cloak_browser_launcher.py
|
||||
COPY browser_use_runner.py /src/browser_use_runner.py
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
EXPOSE 6080 9222 8787
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue