0 Preface/Foreword
0.1 Docker
++docker++ 用来自制++镜像++。
1 Introduction
1.1 Dockerfile
++Dockerfile++ 是用于++定义Docker镜像的构建过程++ ,它包含++一系列的指令用于安装 软件包、配置环境等操作++。
Dockerfile文件的格式如下:
FROM base_image
RUN apt-get update && apt-get install -y \
python3 \
python3-pip
RUN pip3 install opencv-python
#Add other commands and configurations
RUN xxx
CMD [ "python3", "app.py"]
以上示例代码解释:
- ++RUN++是Docker的指令(用于运行操作系统的命令 ),示例是用RUN 来运行apt-get 命令安装Python和pip,并使用pip3 install命令安装了opencv-python
- ++base_image++,为需要的基础镜像,比如:ubuntu:latest 或者python:3.8