video-stream/Dockerfile

13 lines
227 B
Docker
Raw Normal View History

2021-09-09 01:18:24 +00:00
FROM python:latest
RUN apt-get update && apt-get upgrade -y
RUN apt-get install ffmpeg -y
RUN python3 -m pip install --upgrade pip
COPY . /py
WORKDIR /py
RUN python3 -m pip install -U -r requirements.txt
CMD python3 -m bot