Dockerfile 394 Bytes
FROM harbor.5jstore.com:8020/ai/wm_video_cut:v0.2
LABEL maintainer="zhouchengbo@wmdigit.com"

ARG DEBIAN_FRONTEND=noninteractive

WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/

# 拷贝所有文件
ADD ./ /app

WORKDIR /app
# ENTRYPOINT [ "python", "start.py" ]
CMD ["gunicorn", "start:app", "-c", "./gunicorn.conf.py"]