1、查看已有镜像
docker images
2、制作dockerfile
python
FROM python
LABEL maintainer="JETZ"
add . /
WORKDIR /
3、新建镜像
python
docker build -t python3.7.13 .
4、打包导出镜像
python
docker save python3.7.13 -o /opt/python3.7.13.tar
5、重新加载镜像
python
cd /opt
docker load -i python3.7.13.tar