diff --git a/Jenkinsfile b/Jenkinsfile index 12dad19..f07d1d5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,10 +18,7 @@ pipeline { stage('deploy') { steps { script { - def dockerCmd = 'docker run -p 3080:3080 -d nanajanashia/demo-app:1.0' - sshagent(['ec2-server-key']) { - sh "ssh -o StrictHostKeyChecking=no ec2-user@35.180.251.121 ${dockerCmd}" - } + echo "Deploying the application..." } } }