2021-10-29 16:38:40 +00:00
|
|
|
FROM nikolaik/python-nodejs:python3.10-nodejs17
|
|
|
|
RUN apt-get update && apt-get upgrade -y
|
|
|
|
RUN apt-get install ffmpeg -y
|
2021-09-09 01:18:24 +00:00
|
|
|
COPY . /py
|
|
|
|
WORKDIR /py
|
2021-10-29 16:38:40 +00:00
|
|
|
RUN pip3 install -U pip
|
|
|
|
RUN pip3 install -U -r requirements.txt
|
2021-10-25 07:55:45 +00:00
|
|
|
CMD python3 -m program
|