diff --git a/Dockerfile b/Dockerfile index 44008e8..4dec15c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN pip3 install ipython RUN pip3 install torch RUN pip3 install numpy RUN pip3 install dvc +RUN pip3 install dvc[ssh] paramiko RUN apt-get install unzip WORKDIR /app diff --git a/dvc.Jenkinsfile b/dvc.Jenkinsfile index 33c6aca..6116364 100644 --- a/dvc.Jenkinsfile +++ b/dvc.Jenkinsfile @@ -9,6 +9,7 @@ pipeline { withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS' sh 'dvc pull' + sh 'dvc repro' } } }