Dokcerfile如何在使用(RUN yum -y install vim)时配置yum源
时间: 2023-05-15 21:05:28 浏览: 115
yum源配置
5星 · 资源好评率100%
您可以在 Dockerfile 中使用以下命令来配置 yum 源并安装 vim:
```
RUN yum install -y wget && \
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo && \
yum install -y vim
```
这将使用 wget 命令下载阿里云的 CentOS 7 yum 源,并使用 yum 安装 vim。
阅读全文