File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ pipeline {
27
27
steps {
28
28
ansiColor(' xterm' ) {
29
29
// 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'
31
31
sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME npm run-script build'
32
32
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'
34
34
sh ' docker run --rm -v $(pwd):/data $DOCKER_CI_TOOLS node-prune'
35
35
36
36
// Docker Build
@@ -70,10 +70,10 @@ pipeline {
70
70
steps {
71
71
ansiColor(' xterm' ) {
72
72
// 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'
74
74
sh ' docker run --rm -v $(pwd):/app -w /app $BASE_IMAGE_NAME-armhf npm run-script build'
75
75
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'
77
77
78
78
// Docker Build
79
79
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