22 lines
436 B
Docker
22 lines
436 B
Docker
# Opencv Webcam Script, GPL-3.0 License
|
||
# 创建人:曾逸夫
|
||
# 创建时间:2021-12-31
|
||
|
||
|
||
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 |