pipeline { agent { docker { image `python:slim` } } stages { stage("install_dep") { sh "pip install -r requirements/dev.txt" } } }