diff --git a/Jenkinsfile b/Jenkinsfile index 3f05db7..c1acee8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,10 @@ pipeline { - agent any - stages { - stage('Hello') { - steps { - echo "hello wordl" - script { - img = 'python:latest' - docker.image("${img}").run('-d') - } - } + agent any + stages { + stage('Test') { + steps { + sh 'echo hi' + } + } } - } -} +} \ No newline at end of file