“利用Dockerfile修改容器中的apt源(debian源)”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
→‎2
→‎2
第20行: 第20行:
 
   </pre>
 
   </pre>
  
=2=
+
=good=
 
<pre>
 
<pre>
 
      
 
      

2020年2月24日 (一) 14:06的版本

由于众所周知的原因 默认的debian是用了官网的源,在天朝就非卡 所以 有时就得改一下源喽

1

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

2

#apt-get源 使用aliyun的源
RUN mv /etc/apt/sources.list /etc/apt/sources.list.bakevan && \    
    echo "deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib" >/etc/apt/sources.list && \
    echo "deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib" >/etc/apt/sources.list && \
    echo "deb http://mirrors.aliyun.com/debian-security stretch/updates main" >/etc/apt/sources.list && \
    echo "deb-src http://mirrors.aliyun.com/debian-security stretch/updates main" >/etc/apt/sources.list && \
    echo "deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib" >/etc/apt/sources.list && \
    echo "deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib" >/etc/apt/sources.list && \
    echo "deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib" >/etc/apt/sources.list && \
    echo "deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib" >/etc/apt/sources.list 
   

good

    
wget  -c  http://mirrors.163.com/.help/sources.list.stretch
cp sources.list.stretch sources.list #在Dockerfile 同一个目录



# Add custom china source  

RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak 
RUN rm -f /etc/apt/sources.list 
RUN rm -f /etc/apt/sources.list.d/mssql-release.list 
COPY  sources.list /etc/apt/
#RUN printf "deb http://archive.debian.org/debian/ jessie main\ndeb-src http://archive.debian.org/debian/ jessie main\ndeb http://security.debian.org jessie/updates main\ndeb-src http://security.debian.org jessie/updates main" > /etc/apt/sources.list
RUN  apt clean 
RUN apt update  -y 
RUN  apt clean 
RUN  apt install -y  apt-transport-https
RUN apt install -y cron vim 


#这个太温和了 
RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak 
ADD  sources.list /etc/apt/ && apt-get update -y && apt-get install -y libgdiplus && apt-get clean && ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll