bbuddy-ui/Jenkinsfile

29 lines
871 B
Plaintext
Raw Permalink Normal View History

2024-01-05 19:49:12 +00:00
pipeline {
agent { label 'jenkins-nodejs-agent' }
stages {
stage('Build static content') {
steps {
sh '''
2024-01-10 23:17:45 +00:00
npm install
npm run build
2024-01-10 22:02:39 +00:00
pwd
2024-01-11 00:42:47 +00:00
echo
2024-01-10 23:01:08 +00:00
docker build --progress=plain -t bbuddy/bbuddy_ui:latest .
2024-01-05 19:49:12 +00:00
'''
}
}
stage('Push image to harbor ') {
steps {
sh '''
2024-01-10 23:17:45 +00:00
sudo docker login https://harbor-wtkp3fsbv6.vertexa.devbay.tech/ -u 'robot$jenkins' -p 'ZrzsVIAeueW1p0alpAnPfM5CDtaRVVKz'
sudo docker tag bbuddy/bbuddy_ui:latest harbor-wtkp3fsbv6.vertexa.devbay.tech/bbuddy/bbuddy_ui:latest
sudo docker push harbor-wtkp3fsbv6.vertexa.devbay.tech/bbuddy/bbuddy_ui:latest
2024-01-05 19:49:12 +00:00
'''
}
}
}
}