Docker ubuntu apt-get更換國內源解決Dockerfile構建速度過慢

建立Dockerfile而且更新apt源

在Dockerfile中添加以下兩句代碼:docker

RUN  sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN  apt-get clean

更新apt源的Dockerfile以下:ubuntu

FROM ubuntu:latest
MAINTAINER kk "kk@qq.com"
RUN  sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN  apt-get clean
RUN apt-get update

相關文章
相關標籤/搜索