diff --git a/Jenkinsfile b/Jenkinsfile index 23bebfd..5c459bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,11 +19,10 @@ node { } dir('target/front'){ stage("Frontend: Build") { - docker.image('circleci/node:10').inside{ - withEnv([ - 'npm_config_cache=npm-cache', - 'HOME=.', - ]) { sh 'npm install && npm run build' } + docker.image('circleci/node:10').inside{ + withEnv([ + 'HOME=.', + ]) { sh 'npm install && npm run build' } } } }