#35 bugfix: Error: Failed to launch the browser process

This commit is contained in:
voidking 2023-07-13 13:55:56 +08:00
parent b370507c1e
commit b1372e22f6
2 changed files with 37 additions and 14 deletions

View file

@ -1,4 +1,4 @@
# This Dockerfile is friendly to users in Chinese Mainland :)
# This Dockerfile is friendly to users in Chinese Mainland :)
# For users outside mainland China, feel free to modify or delete them :)
# Use a base image with Python 3.9.17 slim version (Bullseye)
@ -7,15 +7,20 @@ FROM python:3.9.17-slim-bullseye
# Install Debian software needed by MetaGPT
RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list &&\
apt update &&\
apt install -y git curl wget build-essential gcc clang g++ make &&\
apt install -y git curl wget build-essential gcc clang g++ make gnupg &&\
curl -sL https://deb.nodesource.com/setup_19.x | bash - &&\
apt install -y nodejs &&\
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&\
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' &&\
apt-get update &&\
apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends &&\
apt-get clean
# Set the working directory to /app
WORKDIR /app
# Install Mermaid CLI globally and clone the MetaGPT repository
#ENV PUPPETEER_SKIP_DOWNLOAD='true'
RUN npm config set registry https://registry.npm.taobao.org &&\
npm install -g @mermaid-js/mermaid-cli &&\
npm cache clean --force &&\
@ -29,6 +34,17 @@ RUN cd metagpt &&\
pip cache purge &&\
python setup.py install
# Running with an infinite loop using the tail command
CMD ["sh", "-c", "tail -f /dev/null"]
# Add metagpt user so we don't need --no-sandbox when use puppeteer
RUN useradd -m metagpt -s /bin/bash &&\
chown metagpt -R /app/metagpt &&\
cp -r /root/.cache /home/metagpt/ &&\
chown metagpt -R /home/metagpt/.cache &&\
chrome_sandbox=$(find /root/.cache/puppeteer/chrome/ -name "chrome_sandbox") &&\
chmod 4755 $chrome_sandbox &&\
cp $chrome_sandbox /usr/local/sbin/chrome-devel-sandbox
WORKDIR /app/metagpt
USER metagpt
# Running with an infinite loop using the tail command
CMD ["sh", "-c", "tail -f /dev/null"]