A docker image (333MB) that runs a selenium test in a headless chromium instance.
docker build -t $USER/selenium:latest .
docker run $USER/selenium
# Create a new virtualenv
python3 -m venv .venv
# Use the newly created virtualenv
source .venv/bin/activate
# OR use direnv
direnv allow
# Install requirements
pip3 install -r requirements.txt
pip3 install -r requirements-dev.txt