Remove vendor/ before building image - so the build doesnt include dev dependancies

This commit is contained in:
Deon George 2021-06-30 23:09:50 +10:00
parent 835dcd6b98
commit f7a037aff5
No known key found for this signature in database
GPG Key ID: 7670E8DC27415254
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ docker:
- if [ -f init ]; then chmod 500 init; fi
- ([ -z "$REFRESH" ] && docker pull ${CI_REGISTRY_IMAGE}:${CACHETAG}) || echo "true"
- echo -n ${CI_COMMIT_SHORT_SHA} > VERSION
- rm -rf vendor/
- docker build --cache-from ${CI_REGISTRY_IMAGE}:${CACHETAG} -t ${CI_REGISTRY_IMAGE}:${VERSION} -t ${CI_REGISTRY_IMAGE}:${CACHETAG} .
- docker push ${CI_REGISTRY_IMAGE}:${VERSION}
- docker push ${CI_REGISTRY_IMAGE}:${CACHETAG}