2021-10-29 20:19:02 +00:00
|
|
|
FROM nikolaik/python-nodejs:python3.9-nodejs17
|
2021-10-29 19:10:51 +00:00
|
|
|
RUN apt update && apt upgrade -y
|
|
|
|
RUN apt install -y ffmpeg python3-pip
|
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-29 19:10:51 +00:00
|
|
|
CMD ["python3", "main.py"]
|