diff --git a/Jenkinsfile_CI b/Jenkinsfile_CI index 1858239..35c497f 100644 --- a/Jenkinsfile_CI +++ b/Jenkinsfile_CI @@ -12,6 +12,11 @@ pipeline { SSH_PASS = credentials('ROCK_PI_5_SSH_PASS') } stages { + stage('Init container') { + steps { + sh 'apt-get update && apt-get install -y sshpass openssh-client' + } + } stage('Build') { steps { sh 'mvn -B -DskipTests -X clean package spring-boot:repackage'