Files
GeoShare/Jenkinsfile
T
2026-06-22 19:33:14 +03:00

21 lines
394 B
Groovy

pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
disableConcurrentBuilds()
timeout(time: 1, unit: 'MINUTES')
timestamps()
}
stages {
stage('Docker build') {
steps {
echo 'Docker build'
sh "docker build --no-cache -t geotracker ."
}
}
}
}