feed jenkinsfile

This commit is contained in:
Witalij Poljatchek 2024-01-05 20:49:12 +01:00
parent ae76a60016
commit 9a624e5df7
1 changed files with 29 additions and 0 deletions

29
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,29 @@
pipeline {
agent { label 'jenkins-nodejs-agent' }
stages {
stage('Build static content') {
steps {
sh '''
sudo npm install
sudo npm run build
sleep 100000000
#sudo docker build -t bbuddy/bbuddy_backend-dev:latest .
'''
}
}
stage('Push image to harbor ') {
steps {
sh '''
#sudo docker login https://harbor-wtkp3fsbv6.vertexa.devbay.tech/ -u 'robot$jenkins' -p 'ZrzsVIAeueW1p0alpAnPfM5CDtaRVVKz'
#sudo docker tag bbuddy/bbuddy_backend-dev:1.0.0 harbor-wtkp3fsbv6.vertexa.devbay.tech/bbuddy/bbuddy-ui:latest
#sudo docker push harbor-wtkp3fsbv6.vertexa.devbay.tech/bbuddy/bbuddy-ui:latest
'''
}
}
}
}