rsyncd-docker/Jenkinsfile
2025-11-05 16:40:40 +01:00

18 lines
342 B
Groovy

pipeline {
agent {
label 'docker'
}
stages {
stage('Build Docker image') {
steps {
sh 'docker build -t andreas/rsyncd:latest .'
}
}
stage('Tag Docker image') {
steps {
sh 'docker images'
sh 'ls -la'
}
}
}
}