Исправление импорта модуля в main.py (1)

FixScheduler
Лев 2025-12-05 12:22:57 +05:00
parent e620523022
commit ebee8687a8
1 changed files with 3 additions and 1 deletions

4
Jenkinsfile vendored
View File

@ -4,7 +4,9 @@ pipeline {
stages { stages {
stage('recreate > build > run container') { stage('recreate > build > run container') {
steps { steps {
sh "docker-compose up --force-recreate --build parse_saby" // sh "docker-compose up --force-recreate --build parse_saby"
sh "docker-compose build --no-cache parse_saby"
sh "docker-compose up parse_saby"
} }
} }
} }