├── .github └── workflows │ ├── cassandra.yaml │ └── main.yml ├── 3.9 └── webapp │ ├── cassandra-selenium │ └── Dockerfile │ ├── cassandra │ └── Dockerfile │ ├── chromedriver │ └── Dockerfile │ ├── jupyter-tensorflow │ └── Dockerfile │ ├── selenium │ └── Dockerfile │ └── slim │ └── Dockerfile └── README.md /.github/workflows/cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/.github/workflows/cassandra.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /3.9/webapp/cassandra-selenium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/3.9/webapp/cassandra-selenium/Dockerfile -------------------------------------------------------------------------------- /3.9/webapp/cassandra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/3.9/webapp/cassandra/Dockerfile -------------------------------------------------------------------------------- /3.9/webapp/chromedriver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/3.9/webapp/chromedriver/Dockerfile -------------------------------------------------------------------------------- /3.9/webapp/jupyter-tensorflow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/3.9/webapp/jupyter-tensorflow/Dockerfile -------------------------------------------------------------------------------- /3.9/webapp/selenium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/3.9/webapp/selenium/Dockerfile -------------------------------------------------------------------------------- /3.9/webapp/slim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/3.9/webapp/slim/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/docker-python/HEAD/README.md --------------------------------------------------------------------------------