| 123456789101112131415161718192021222324252627 | 
							- FROM ubuntu:20.04
 
- RUN apt-get update
 
- RUN apt-get -y install gcc python3-dev libmariadb-dev
 
- RUN apt-get -y install python3
 
- RUN apt-get -y install python3-pip
 
- RUN apt-get -y install tmux
 
- RUN pip3 install --upgrade pip
 
- #RUN sudo pip3 install bs4
 
- #RUN sudo pip3 install selenium-wire 
 
- RUN pip3 install dataset
 
- RUN pip3 install mysqlclient
 
- #RUN sudo pip3 install pandas
 
- #RUN sudo pip3 install pymysql
 
- #RUN apk add bash
 
- #RUN apk add --no-cache mariadb-dev
 
- #RUN apk add libffi-dev
 
- #RUN apk add tmux
 
- #RUN pip3 install --upgrade pip
 
- #RUN pip3 install bs4
 
- #RUN pip3 install selenium-wire
 
- #RUN pip3 install dataset
 
- #RUN pip3 install mysqlclient
 
- #RUN pip3 install selenium-wire
 
- CMD ["python3"]
 
 
  |