序
本文主要讲述一下如何在dockerfile里头安装chrome及firefox。
chrome
RUN apt-get install -y \ apt-transport-https \ ca-certificates \ curl \ gnupg \ --no-install-recommends RUN curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list RUN apt-get update ## xdg-icon-resource: No writable system icon directory found. RUN apt-get install -y --force-yes --no-install-recommends hicolor-icon-theme RUN apt-get install -y \ google-chrome-stable \ --no-install-recommends
如果无法访问dl.google.com的话,估计需要自行下载然后add进去
firefox
RUN apt-get install -y --force-yes --no-install-recommends python-software-properties software-properties-common RUN apt-add-repository ppa:mozillateam/firefox-next RUN apt-get update RUN apt-get install -y --force-yes --no-install-recommends firefox xvfb RUN apt-get install -y --force-yes --no-install-recommends x11vnc x11-xkb-utils xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic x11-apps
firefox的启动有点麻烦,需要设置XDG_RUNTIME_DIR,另外需要启动display
Xvfb :10 -ac & export DISPLAY=:10
安装中文字体
RUN apt-get install -y --force-yes --no-install-recommends \ fonts-wqy-microhei \ ttf-wqy-zenhei