mirror of
https://github.com/docker/getting-started-app.git
synced 2024-12-22 15:20:51 -05:00
35 lines
530 B
Groovy
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|