diff --git a/Jenkinsfile b/Jenkinsfile index a742e73..40da509 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,11 @@ pipeline { - agent { dockerfile true } + agent any stages { stage('Build') { steps { sh 'echo building...' + sh 'docker run -p 5000:5000 microblog:latest' } }