gitlab-runner docker 怎么安装chrome
时间: 2023-02-08 09:12:34 浏览: 121
docker-chrome:在Docker容器中安装Google Chrome
可以通过在 gitlab-runner 的 Dockerfile 中添加如下命令来安装 Chrome:
```
RUN apt-get update && apt-get install -y google-chrome-stable
```
然后重新构建 gitlab-runner 镜像并使用新镜像运行 gitlab-runner。
需要注意的是,在运行 chrome 的时候需要添加 --no-sandbox 参数。
例如:
```
google-chrome --no-sandbox
```
在启动 gitlab-runner 运行任务的时候可以加上 --cap-add=SYS_ADMIN --no-sandbox
最后在脚本中调用 chrome 可能需要指定 chrome 文件的绝对路径,例如:
```
/usr/bin/google-chrome --no-sandbox
```
阅读全文