Skip to content

Commit

Permalink
jenkins: fix image build tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
phariseo committed Aug 27, 2022
1 parent bdad96b commit 7ac0aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ node('docker') {
stage('Build and publish Docker images in CI repository') {
checkout scm
echo 'Building image ...'
def DevicehiveWsProxy = docker.build('devicehiveci/devicehive-ws-proxy:${BRANCH_NAME}', '--pull -f Dockerfile .')
def DevicehiveWsProxy = docker.build("devicehiveci/devicehive-ws-proxy:${BRANCH_NAME}", '--pull -f Dockerfile .')

echo 'Pushin image to CI repository ...'
docker.withRegistry('https://registry.hub.docker.com', 'devicehiveci_dockerhub'){
Expand Down

0 comments on commit 7ac0aa8

Please sign in to comment.