video-stream/Dockerfile

9 lines
233 B
Docker
Raw Normal View History

2021-10-30 04:29:15 +00:00
FROM nikolaik/python-nodejs:python3.10-nodejs17
2021-10-30 04:28:00 +00:00
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
RUN pip3 install -U pip
RUN pip3 install -U -r requirements.txt
2021-10-30 04:31:39 +00:00
CMD ["python3", "main.py"]