Create Jenkinsfile

This commit is contained in:
Kaveri Reddy 2024-12-10 23:48:17 +05:30 committed by GitHub
parent a132946a11
commit 6367f5fef9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

35
Jenkinsfile vendored Normal file
View File

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