video-stream/Dockerfile
Hunter XDD c94de6bb4f
Umm
2021-10-30 10:01:39 +05:30

9 lines
233 B
Docker

FROM nikolaik/python-nodejs:python3.10-nodejs17
RUN apt-get update && apt-get upgrade -y
RUN apt-get install ffmpeg -y
COPY . /py
WORKDIR /py
RUN pip3 install -U pip
RUN pip3 install -U -r requirements.txt
CMD ["python3", "main.py"]