This commit is contained in:
oleg.vodyanov91@gmail.com 2026-01-25 02:06:37 +04:00
parent bd9a36753f
commit 8e456bfaad

18
pipelines/test Normal file
View File

@ -0,0 +1,18 @@
pipeline {
agent { label 'docker' }
stages {
stage('Docker test') {
steps {
sh 'docker version'
sh 'docker ps'
}
}
stage('Build image') {
steps {
sh 'docker build -t test-image:latest .'
}
}
}
}