mirror of
https://github.com/dogkeeper886/ollama-k80-lab.git
synced 2025-12-09 23:37:07 +00:00
Add a Dockerfile for mcp-web-browser
This commit is contained in:
15
mcp-servers/mcp-web-browser/Dockerfile
Normal file
15
mcp-servers/mcp-web-browser/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM ubuntu:22.04
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ENV TZ=Asia/Taipei
|
||||
|
||||
RUN apt-get update && apt-get upgrade -y \
|
||||
&& apt-get install -y python3 python3-pip git \
|
||||
&& pip3 install mcp playwright \
|
||||
&& playwright install-deps \
|
||||
&& playwright install
|
||||
|
||||
WORKDIR /usr/local/src
|
||||
RUN git clone https://github.com/random-robbie/mcp-web-browser
|
||||
|
||||
CMD [ "/usr/bin/python3", "/usr/local/src/mcp-web-browser/src/mcp_web_browser/server.py" ]
|
||||
Reference in New Issue
Block a user