diff --git a/deploy-this/create-nginx-with-tools.jenkinsfile b/deploy-this/create-nginx-with-tools.jenkinsfile index d741631..5905fe3 100644 --- a/deploy-this/create-nginx-with-tools.jenkinsfile +++ b/deploy-this/create-nginx-with-tools.jenkinsfile @@ -2,10 +2,10 @@ pipeline { agent any stages { - stage('create ginx-with-tools-docker') { + stage('create nginx-with-tools-docker') { steps { script{ - def nxinx_build ="docker build --build-arg NGINX_IMAGE=${NGINX_IMAGE} --file nginx-with-tools-docker.dockerfile -t nginx-with-tools ." + def nxinx_build ="docker build --build-arg NGINX_IMAGE=${NGINX_IMAGE} --file ./nginx-with-tools-docker.dockerfile -t nginx-with-tools ." sh(nxinx_build); } }