getting-started-app/Jenkinsfile
2024-12-11 00:00:10 +05:30

35 lines
530 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
script {
echo "Building"
bat "docker build -t ex9:latest ."
}
}
}
stage('runnig') {
steps {
script {
echo "runnig"
}
}
}
stage('test') {
steps {
script {
echo "testing"
}
}
}
stage('deploying') {
steps {
script {
echo "deploying"
}
}
}
}
}