2023-06-26 06:56:03 +00:00
|
|
|
FROM python:3.8-slim-buster
|
2023-06-16 07:24:12 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
|
|
|
|
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
|
|
|
|
RUN apt -y update && apt -y upgrade
|
|
|
|
RUN apt -y install ffmpeg
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
CMD ["python", "app.py"]
|