This repository is used in our intelligence and process module as the base image for builds
1M+
This Docker image provides a Python 3.8 environment with various data science and web development packages. It is designed to work with Dadosfera intelligence and transformation module, a platform for building, running, and deploying data science pipelines.
seleniumEnvironments sectionBase Images. Click on + CustomIn a new environment, new packages can be added using the following command:
mamba run -n py38 pip install $PACKAGE_NAME
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.headless = True
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
options.add_argument('--remote-debugging-port=9222')
# Provide the path to the Chrome WebDriver if it's not in the system's PATH
# driver = webdriver.Chrome(executable_path='/path/to/chromedriver', options=options)
driver = webdriver.Chrome(options=options)
# Navigate to a website
driver.get('https://www.example.com')
# Print the title of the website
print(driver.title)
# Close the browser
driver.quit()
Content type
Image
Digest
sha256:ee404d5ff…
Size
1.2 GB
Last updated
6 days ago
docker pull dadosfera/base-kernel-py:v2026.09.11.0.beta-c796b16