diff --git a/Jenkinsfile b/Jenkinsfile index 8495534..3e47436 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,10 +27,8 @@ pipeline { stage('Build Docker image') { steps { - echo "🐳 Construction de l’image Docker..." - sh ''' - docker build -t ${APP_NAME}:latest . - ''' + echo "🐳 Construction de l’image Docker backend..." + sh 'docker build -t ${APP_NAME}:latest .' } }