diff --git a/Jenkinsfile b/Jenkinsfile index e8cca23..e1a8042 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ node { stage('Deploy') { echo "${env.ENV_REGISTRY_URL}" docker.withRegistry("https://registry.proxyq.co", 'registry-credentials-id') { - def customImage = docker.build("registry.proxyq.co/jenkins/website:${env.BUILD_ID}") + def customImage = docker.build("registry.proxyq.co/jenkins/website:${env.BUILD_ID}", '.') customImage.push() } }