pipeline {
agent { 
    docker { 
	image 'czajson99/ium:v1'
	args '-it --entrypoint=/bin/bash'
 }
}
stages {
    stage('Test') {
        steps {
            sh './download.sh'
        }
    }
}
}