123456789101112131415161718192021222324252627 |
- FROM selenium/standalone-chrome:99.0
- RUN sudo apt-get update
- RUN sudo apt-get -y install gcc python3-dev libmariadb-dev
- RUN sudo apt-get -y install python3
- RUN sudo apt-get -y install python3-pip
- RUN sudo apt-get -y install tmux
- RUN sudo pip3 install --upgrade pip
- RUN sudo pip3 install bs4
- RUN sudo pip3 install selenium-wire
- RUN sudo pip3 install dataset
- RUN sudo 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"]
|