FROM ubuntu:18.04

RUN apt-get update --fix-missing

RUN apt-get install -y python3-dev python3-pip

RUN apt-get install -y ffmpeg --fix-missing

WORKDIR /root

COPY run.py run.py

CMD python3 -u run.py
