opencv_webcam/Dockerfile

27 lines
659 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Opencv Webcam Script v0.4, GPL-3.0 License
# 创建人:曾逸夫
# 创建时间2022-01-17
FROM ubuntu:latest
LABEL maintainer="zyfiy1314@163.com"
# 安装linux包
RUN apt update
RUN DEBIAN_FRONTEND=noninteractive TZ=Asia/Shanghai apt-get -y install tzdata
RUN apt install -y python3-pip zip htop screen libgl1-mesa-glx libgtk2.0-dev vim
# 解决vim中文乱码问题
RUN echo "set enc=utf8" > ~/.vimrc
# 安装依赖
COPY requirements.txt .
RUN python3 -m pip install --no-cache --upgrade pip
RUN pip install --no-cache -U -r requirements.txt
# 创建工作目录
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# 复制内容
COPY . /usr/src/app