根据docker官方制作镜像碰到的坑 更新apt-get源 使用163的源

本文详细介绍了在Docker中遇到的无法访问官方源的问题,并提供了解决方案,通过更换为国内163源来确保apt-get可以正常工作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Sending build context to Docker daemon  2.048kB
Step 1/2 : FROM debian:wheezy
 ---> 10fcec6d95c4
Step 2/2 : RUN apt-get update && install -y cowsay fortune
 ---> Running in a35430ae668a
Ign http://security.debian.org wheezy/updates Release.gpg
Ign http://security.debian.org wheezy/updates Release
Ign http://deb.debian.org wheezy Release.gpg
Ign http://deb.debian.org wheezy-updates Release.gpg
Ign http://deb.debian.org wheezy Release
Ign http://deb.debian.org wheezy-updates Release
Err http://deb.debian.org wheezy/main amd64 Packages

Err http://deb.debian.org wheezy-updates/main amd64 Packages

Err http://deb.debian.org wheezy/main amd64 Packages

Err http://deb.debian.org wheezy-updates/main amd64 Packages

Err http://deb.debian.org wheezy/main amd64 Packages

Err http://deb.debian.org wheezy-updates/main amd64 Packages

Err http://security.debian.org wheezy/updates/main amd64 Packages

Err http://deb.debian.org wheezy/main amd64 Packages

Err http://security.debian.org wheezy/updates/main amd64 Packages

Err http://deb.debian.org wheezy-updates/main amd64 Packages

Err http://security.debian.org wheezy/updates/main amd64 Packages

Err http://security.debian.org wheezy/updates/main amd64 Packages

Err http://deb.debian.org wheezy/main amd64 Packages
  404  Not Found
Err http://security.debian.org wheezy/updates/main amd64 Packages
  404  Not Found
Err http://deb.debian.org wheezy-updates/main amd64 Packages
  404  Not Found
W: Failed to fetch http://security.debian.org/debian-security/dists/wheezy/updates/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://deb.debian.org/debian/dists/wheezy/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://deb.debian.org/debian/dists/wheezy-updates/main/binary-amd64/Packages  404  Not Found

E: Some index files failed to download. They have been ignored, or old ones used instead.
The command '/bin/sh -c apt-get update && install -y cowsay fortune' returned a non-zero code: 100

 

 

国内访问不了docker源,不会”科学上网“的同学可以把官方源改变成国内源

#更新apt-get源 使用163的源

RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak && \
    echo "deb http://mirrors.163.com/debian/ stretch main non-free contrib" >/etc/apt/sources.list && \
    echo "deb http://mirrors.163.com/debian/ stretch-updates main non-free contrib" >>/etc/apt/sources.list && \
    echo "deb http://mirrors.163.com/debian/ stretch-backports main non-free contrib" >>/etc/apt/sources.list && \
    echo "deb-src http://mirrors.163.com/debian/ stretch main non-free contrib" >>/etc/apt/sources.list && \
    echo "deb-src http://mirrors.163.com/debian/ stretch-updates main non-free contrib" >>/etc/apt/sources.list && \
    echo "deb-src http://mirrors.163.com/debian/ stretch-backports main non-free contrib" >>/etc/apt/sources.list && \
    echo "deb http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib" >>/etc/apt/sources.list && \
    echo "deb-src http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib" >>/etc/apt/sources.list

网上找了很多都是错的,最后试了这个才成功;

http://mirrors.163.com/.help/debian.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值