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

36 lines
586 B
Groovy

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