ubuntu安装chrome及firefox

前端之家收集整理的这篇文章主要介绍了ubuntu安装chrome及firefox前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文主要讲述一下如何在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
原文链接:https://www.f2er.com/ubuntu/350642.html

猜你在找的Ubuntu相关文章