Fix typo
testing/ogcore-api/pipeline/head This commit looks good Details
testing/ogcore-api/pipeline/tag There was a failure building this commit Details

pull/13/head opengnsys-0.0.5
Nicolas Arenas 2024-11-20 18:05:53 +01:00
parent 1e998c9a3a
commit 81da6b7a34
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -22,7 +22,7 @@ pipeline {
}
stage('Build Environment') {
steps {
sh """
sh '''
if [ -z "$(docker ps -q)" ]; then
echo "Docker is not running"
else
@ -30,7 +30,7 @@ pipeline {
fi
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
"""
'''
script {
docker.build("${DOCKER_IDENTITY}", '-f docker/Dockerfile-jenkins-php .')