Docker训练营Docker基础知识学习笔记task3——Docker入门Dockerfile详解及镜像创建
作者:互联网
本学习笔记为阿里云天池龙珠计划Docker训练营的学习内容,学习链接为:https://tianchi.aliyun.com/specials/activity/promotion/aicampdocker
一、学习知识点概要
1.Base Images
2.安装依赖包,pip包请在requirements . txt添加
3.把当前文件夹里的文件构建到镜像的根目录下,并设置为默认工作目录
4.如何创建自己的镜像。
二、学习内容
1.Base Images
从天池基础镜像构建( from的base img 根据自己的需要更换,建议使用天池open list镜像链接: https://tianchi. aliyun. com/ forum
FROM registry. cn-shanghai. aliyuncs . com/ tcc-public/python:3
2.安装依赖包,pip包请在requirements . txt添加
RUN pip install numpy -i https
标签:task3,com,学习,sh,https,镜像,Docker,Dockerfile 来源: https://blog.csdn.net/qq_43734935/article/details/115602205