pipeline { agent { dockerfile true } stages { stage('Run Script') { steps { //echo ("checkout: check out from version control") //git "https://git.wmi.amu.edu.pl/s151636/ium_151636.git" //echo ("sh: Shell Script") //sh "python3 script2.py" //echo ("copyArtifacts") //echo("archiveArtifacts") //echo ("run dockerfile") //sh docker echo("run data script") sh "apt install python3.10-venv -y" sh "python3 -m venv docker_ium" sh "source docker_ium/bin/activate" sh "pip3 install pandas" sh "pip3 install -U scikit-learn" sh "pip install tensorflow==2.12.*" sh "python3 script2" sh "deactivate" } } } }