博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu安装chrome及firefox
阅读量:5740 次
发布时间:2019-06-18

本文共 1321 字,大约阅读时间需要 4 分钟。

  hot3.png

本文主要讲述一下如何在dockerfile里头安装chrome及firefox。

chrome

RUN apt-get install -y \	apt-transport-https \	ca-certificates \	curl \  gnupg \	--no-install-recommendsRUN 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.listRUN apt-get update## xdg-icon-resource: No writable system icon directory found.RUN apt-get install -y --force-yes --no-install-recommends hicolor-icon-themeRUN 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-commonRUN apt-add-repository ppa:mozillateam/firefox-nextRUN apt-get updateRUN apt-get install -y --force-yes --no-install-recommends firefox xvfbRUN 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://my.oschina.net/go4it/blog/1570163

你可能感兴趣的文章
webpack+typescript+threejs+vscode开发
查看>>
python读excel写入mysql小工具
查看>>
如何学习区块链
查看>>
搜索问题的办法
查看>>
微信分销系统商城营销5大重点
查看>>
求职准备 - 收藏集 - 掘金
查看>>
htm5新特性(转)
查看>>
Linux-Centos启动流程
查看>>
php 设计模式
查看>>
后端技术精选 - 收藏集 - 掘金
查看>>
Laravel 服务容器
查看>>
mac安装kubernetes并运行echoserver
查看>>
多页架构的前后端分离方案(webpack+express)
查看>>
算法(第4版) Chapter 1
查看>>
前端技术选型的遗憾和经验教训
查看>>
“亲切照料”下的领域驱动设计
查看>>
SRE工程师到底是做什么的?
查看>>
解读:Red Hat为什么收购Ansible
查看>>
PHP json_encode() 函数介绍
查看>>
js动态设置元素高度
查看>>