diff --git a/Jenkinsfile b/Jenkinsfile index ddaf509..7898320 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,8 @@ pipeline { stages { stage('install_dep') { steps { - sh 'pip install -r requirements/dev.txt && python manage.py migrate' + sh '''pip install -r requirements/dev.txt +&& cp .env.sample .env && python manage.py migrate''' } }