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 0e80881 commit b228d62
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 @@ stage('Build and publish Docker image in CI repository') {
node('docker') {
checkout scm
echo 'Building image ...'
def mqtt = docker.build('devicehiveci/devicehive-mqtt:${BRANCH_NAME}', '--pull -f Dockerfile .')
def mqtt = docker.build("devicehiveci/devicehive-mqtt:${BRANCH_NAME}", '--pull -f Dockerfile .')

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

0 comments on commit b228d62

Please sign in to comment.