docker中apt-get update出错hash sum mismatch
在dockerfile中有命令RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y将其改为RUNsed -i s@/archive.ubuntu.com/@/mirrors.ustc.edu.cn/@g /etc/apt/sources.list &
·
在dockerfile中有命令
RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y
将其改为
RUN sed -i s@/archive.ubuntu.com/@/mirrors.ustc.edu.cn/@g /etc/apt/sources.list && apt-get update && apt-get upgrade -y && apt-get autoremove -y
换源后就成功了
更多推荐
已为社区贡献1条内容
所有评论(0)