Dockerfile文件介绍

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

你可能感兴趣的:(gitlab,Docker)