opencv_webcam/Dockerfile

22 lines
436 B
Docker
Raw Normal View History

2021-12-31 12:30:17 +08:00
# Opencv Webcam Script, GPL-3.0 License
# 创建人:曾逸夫
# 创建时间2021-12-31
2021-12-31 18:53:05 +08:00
FROM ubuntu:latest
LABEL maintainer="zyfiy1314@163.com"
# 安装linux包
RUN apt update && apt install -y python3-pip zip
RUN alias python=python3
# 安装依赖
COPY requirements.txt .
RUN pip install --no-cache -U -r requirements.txt
# 创建工作目录
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# 复制内容
COPY . /usr/src/app