1234567891011121314151617181920212223242526 |
- FROM ubuntu:20.04
- RUN apt update
- RUN apt install -y software-properties-common
- RUN add-apt-repository -y ppa:openshot.developers/ppa
- RUN apt update
- RUN apt-get update
- RUN DEBIAN_FRONTEND=noninteractive apt-get install keyboard-configuration
- RUN apt-get install python3-pip -y
- RUN apt-get install vim -y
- RUN pip3 install fastapi
- RUN pip3 install uvicorn[standard]
- RUN pip3 install numpy==1.19.2
- RUN pip3 install BeautifulSoup4
- RUN pip3 install Pillow
- RUN pip3 install pyttsx3
- RUN pip3 install zhtts
- RUN pip3 install rpyc
- RUN pip3 install websocket
- RUN pip3 install websocket-client
- RUN pip3 install dataset
- RUN pip3 install aiofiles
- EXPOSE 8022
- RUN apt-get install python3-openshot -y
- RUN apt-get install openshot-qt -y
- RUN apt install -y xvfb
|