Dockerfile 685 B

123456789101112131415161718192021222324252627
  1. FROM ubuntu:20.04
  2. RUN apt-get update
  3. RUN apt-get -y install gcc python3-dev libmariadb-dev
  4. RUN apt-get -y install python3
  5. RUN apt-get -y install python3-pip
  6. RUN apt-get -y install tmux
  7. RUN pip3 install --upgrade pip
  8. #RUN sudo pip3 install bs4
  9. #RUN sudo pip3 install selenium-wire
  10. RUN pip3 install dataset
  11. RUN pip3 install mysqlclient
  12. #RUN sudo pip3 install pandas
  13. #RUN sudo pip3 install pymysql
  14. #RUN apk add bash
  15. #RUN apk add --no-cache mariadb-dev
  16. #RUN apk add libffi-dev
  17. #RUN apk add tmux
  18. #RUN pip3 install --upgrade pip
  19. #RUN pip3 install bs4
  20. #RUN pip3 install selenium-wire
  21. #RUN pip3 install dataset
  22. #RUN pip3 install mysqlclient
  23. #RUN pip3 install selenium-wire
  24. CMD ["python3"]