video-stream/Dockerfile
2021-10-30 09:58:00 +05:30

9 lines
238 B
Docker

FROM nikolaik/python-nodejs:python3.9-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", "-m", "program"]