构建带有 chrome 环境和 node 环境的镜像
时间: 2023-02-08 19:18:38 浏览: 186
node-v8:V8 lkgr上的实验Node.js镜像
为了构建带有 chrome 环境和 node 环境的镜像,您需要:
1. 找到一个合适的基础镜像,如 ubuntu 或 centos。
2. 在基础镜像上安装 chrome 和 node 环境。
3. 使用 Dockerfile 指令来配置镜像环境,如安装必要的软件包、配置环境变量、复制文件等。
4. 使用 Docker 命令来构建镜像。
具体实现可以参考如下的Dockerfile示例:
```
FROM ubuntu:20.04
RUN apt-get update \
&& apt-get install -y wget gnupg \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list \
&& apt-get update \
&& apt-get install -y google-chrome-stable \
&& apt-get install -y nodejs npm
```
最后使用 `docker build -t myimage .` 来构建镜像,其中 `myimage` 是镜像的名称。
阅读全文