Dockerfile 950 B

1234567891011121314151617181920212223242526272829303132
  1. FROM ubuntu:20.04
  2. RUN apt update
  3. RUN apt install -y software-properties-common
  4. RUN add-apt-repository -y ppa:openshot.developers/ppa
  5. RUN apt update
  6. RUN DEBIAN_FRONTEND=noninteractive apt-get install keyboard-configuration -y
  7. RUN apt-get update && apt-get install -y apt-transport-https
  8. RUN apt-get upgrade -y
  9. RUN apt-get install python3-pip -y
  10. RUN apt-get install vim -y
  11. RUN pip3 install fastapi
  12. RUN pip3 install uvicorn[standard]
  13. RUN pip3 install numpy==1.19.2
  14. RUN pip3 install BeautifulSoup4
  15. RUN pip3 install Pillow
  16. RUN pip3 install pyttsx3
  17. RUN pip3 install zhtts
  18. RUN pip3 install rpyc
  19. RUN pip3 install websocket
  20. RUN pip3 install websocket-client
  21. RUN pip3 install dataset
  22. RUN pip3 install aiofiles
  23. RUN apt-get install python3-openshot -y
  24. RUN apt-get install openshot-qt -y
  25. RUN apt install -y xvfb
  26. RUN pip3 install gtts
  27. RUN pip3 install ffmpy
  28. RUN pip3 install --upgrade google-api-python-client
  29. RUN pip3 install progressbar
  30. RUN pip3 install pysrt