File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ pipeline {
2727 steps {
2828 ansiColor(' xterm' ) {
2929 // Codebase
30- sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME yarn --registry=$NPM_REGISTRY install'
30+ sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME yarn install'
3131 sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME npm run-script build'
3232 sh ' rm -rf node_modules'
33- sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME yarn --registry=$NPM_REGISTRY install --prod'
33+ sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME yarn install --prod'
3434 sh ' docker run --rm -v $(pwd):/data $DOCKER_CI_TOOLS node-prune'
3535
3636 // Docker Build
@@ -70,10 +70,10 @@ pipeline {
7070 steps {
7171 ansiColor(' xterm' ) {
7272 // Codebase
73- sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME-armhf yarn --registry=$NPM_REGISTRY install'
73+ sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME-armhf yarn install'
7474 sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME-armhf npm run-script build'
7575 sh ' rm -rf node_modules'
76- sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME-armhf yarn --registry=$NPM_REGISTRY install --prod'
76+ sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME-armhf yarn install --prod'
7777
7878 // Docker Build
7979 sh ' docker build --pull --no-cache --squash --compress -t $TEMP_IMAGE_NAME_ARM -f Dockerfile.armhf .'
You can’t perform that action at this time.
0 commit comments