video-stream/Dockerfile

9 lines
232 B
Docker
Raw Normal View History

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
RUN pip3 install -U pip
RUN pip3 install -U -r requirements.txt
2021-10-29 19:10:51 +00:00
CMD ["python3", "main.py"]