- fix Jenkinsfile

This commit is contained in:
dmit.b
2026-06-22 19:33:14 +03:00
parent 2ce06bba79
commit 76fdd3601c
Vendored
+3 -4
View File
@@ -8,14 +8,13 @@ pipeline {
timestamps() timestamps()
} }
stages { stages {
stage('Docker build') { stage('Docker build') {
steps { steps {
echo 'Docker build' echo 'Docker build'
sh "docker build -t rezid/geotracker" sh "docker build --no-cache -t geotracker ."
}
} }
} }
} }
}