dockerfile在centos7上安装chrome以及chromedriver
时间: 2023-07-26 15:50:31 浏览: 204
可以按照以下步骤在CentOS 7上安装Chrome和Chromedriver:
1. 创建一个名为Dockerfile的文件并使用以下内容:
```
FROM centos:7
RUN yum -y update && yum -y install epel-release && yum -y install wget && yum -y install unzip && yum -y install fontconfig freetype freetype-devel fontconfig-devel libstdc++.so.6 && yum clean all
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm && yum -y install ./google-chrome-stable_current_*.rpm && rm google-chrome-stable_current_*.rpm
RUN wget https://chromedriver.storage.googleapis.com/87.0.4280.88/chromedriver_linux64.zip && unzip chromedriver_linux64.zip && mv chromedriver /usr/local/bin && rm chromedriver_linux64.zip
```
2. 在Dockerfile所在的目录中执行以下命令来构建Docker镜像:
```
docker build -t centos7-chrome .
```
3. 运行以下命令来启动容器:
```
docker run -it centos7-chrome /bin/bash
```
4. 在容器中运行以下命令来测试Chrome和Chromedriver是否已成功安装:
```
google-chrome --version
chromedriver --version
```
这样就可以在CentOS 7上安装Chrome和Chromedriver。
阅读全文