pipeline { agent any stages { stage('Checkout') { steps { git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487178/ium_s487178.git' } } stage('Build Docker image') { steps { sh 'docker build -t ium_s487178 -f dockerfile3 .' } } stage('Run command in Docker container') { steps { sh 'docker run ium_s487178 python3 ./body_performance.py > output.txt' } } } post { always { archiveArtifacts 'output.txt' } } }