博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DotNetCore跨平台~为debain系统添加阿里云加速
阅读量:6696 次
发布时间:2019-06-25

本文共 1130 字,大约阅读时间需要 3 分钟。

直接把它阿里云的镜像覆盖到原来的/etc/apt/sources.list文件

cat > /etc/apt/sources.list << EOFdeb http://mirrors.aliyun.com/debian/ stretch main non-free contribdeb http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contribdeb-src http://mirrors.aliyun.com/debian/ stretch main non-free contribdeb-src http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contribEOF

这样再进行apt-get update就快了

apt-get install就可以安装你的程序了,在dockefile里也可以把它添加,方便你的容器里安装软件,这样可以一劳永逸!

FROM microsoft/aspnetcore:2.0ARG sourceRUN cat > /etc/apt/sources.list << EOF deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib deb http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contrib deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib deb-src http://mirrors.aliyun.com/debian/ stretch-proposed-updates main non-free contrib EOFRUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezoneRUN apt-get update && apt-get -y install libgdiplus && apt-get cleanWORKDIR /appEXPOSE 80COPY ${source:-publish} .ENTRYPOINT ["dotnet", "SMS.dll"]

这样以后安软件就快了。

转载地址:http://kbvoo.baihongyu.com/

你可能感兴趣的文章
angular
查看>>
转载文章:Windows Azure 七月份更新:SQL 数据库、流量管理器、自动伸缩、虚拟机...
查看>>
RDLC报表部署到服务器的相关问题
查看>>
HTML5移动Web开发(九)——优化浏览器视口宽度设置
查看>>
Spark- 根据ip地址计算归属地
查看>>
python中的面向对象学习以及类的继承和继承顺序
查看>>
注册表的作用、bat文件中REG ADD命令添加注册表项以及bat
查看>>
sort
查看>>
C# is 强制转换
查看>>
rigi参考书籍
查看>>
慎用线程局部变量
查看>>
让可等待的计时器添加APC调用
查看>>
用户端传入参数问题
查看>>
Vue 踩坑之旅
查看>>
一个程序员的自白(危机可导)
查看>>
JSP页面输出的几种方式:
查看>>
svn服务器
查看>>
Ubuntu 18.04 手动编译安装 ffmpeg
查看>>
DotNet 学习笔记 Servers
查看>>
实现who
查看>>