fix: fixed agent docker installation
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit Details

amorozov 2023-04-04 20:05:01 +03:00
parent 21bcb7868f
commit 2629247930
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -33,7 +33,8 @@ pipeline {
}
stage('build_docker') {
steps {
sh "docker build . --tag ${resolveImageName(env)}"
sh "which docker"
sh "/usr/bin/docker build . --tag ${resolveImageName(env)}"
}
}
stage('push_docker') {