From 2ce06bba79cef76c02a851bd521af909aa85274e Mon Sep 17 00:00:00 2001 From: "dmit.b" Date: Mon, 22 Jun 2026 14:19:34 +0300 Subject: [PATCH] - add Jenkinsfile --- Jenkinsfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e69de29..f125872 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +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 -t rezid/geotracker" + } + } + } + } \ No newline at end of file