Files
java-maven-app/Jenkinsfile
Nana Janashia 322a9fb1b9 add new feature
2020-12-04 16:22:34 +01:00

29 lines
583 B
Groovy

#!/usr/bin/env groovy
pipeline {
agent any
stages {
stage('build app') {
steps {
script {
echo "building the application..."
}
}
}
stage('build image') {
steps {
script {
echo "building the docker image..."
}
}
}
stage('deploy') {
steps {
script {
echo 'deploying docker image to EC2...'
}
}
}
}
}