2、配置镜像加速

参考:https://www.cnblogs.com/ychun/p/16460332.html

3、创建Dockerfile文件,用来存放python项目和启动文件

1)比如:我的Dockerfile文件为:hello

2) 接着创建Dockerfile文件,文件名是固定的,文件内容如下

# 基于python镜像
FROM python
# 工作目录
WORKDIR /code
# 拷贝py文件和requirements.txt文件
ADD . /code
# 也可使用以下两句实现
#COPY hello_world.py /code/
#COPY requirements.txt /code/
# 更新pip
RUN pip install --upgrade pip --index-url https://pypi.douban.com/simple
# pip安装依赖包
RUN pip install -r requirements.txt
# 执行python文件,
CMD ["python","hello.py"]

3)接着创建Dockerfile文件,文件名是固定的,文件内容如下,这里存放的是python项目需要的module

numpy==1.23.1
pycryptodome==3.15.0
pycryptodome==3.15.0

4)创建python.py,也就是程序的入口,执行文件

from time import sleep
while True:
    print('hello world')
    sleep(3)

4、构建镜像

进入项目所在文件夹,也就是创建的hello文件夹,在cmd中输入命令,hello是项目名,v1是版本号

docker build -t hello:v1 .

5、执行镜像

docker run -it hello:v1

1)在创建Dockerfile时,文件名一定是“ Dockerfile ”,注意大小写。类型为文件, 无后缀

2)在Dockerfile文件中,以 # 开头 的视为注释,但如果在有效指令后 同一行 用 # 注释,会将其作为参数处理导致报错

参考:https://blog.csdn.net/qq_14997473/article/details/107841757