feat(build): add build-in-image targets to make
This commit is contained in:
parent
d2156a5b23
commit
f8059452bc
|
@ -117,7 +117,7 @@ ingress.extensions/gitlab created (dry run)
|
|||
|
||||
### Docker Build
|
||||
|
||||
This method does not require the usual dependencies to be installed locally, only `docker` itself.
|
||||
This method does not require the usual dependencies to be installed, only `docker` itself.
|
||||
|
||||
Build with Docker:
|
||||
|
||||
|
|
6
run.mk
6
run.mk
|
@ -31,3 +31,9 @@ test-rules: build-bundle
|
|||
--source $${file} \
|
||||
--tag salty-dog > /dev/null || exit 1; \
|
||||
done
|
||||
|
||||
local-alpine:
|
||||
docker run --rm -v "$(shell pwd):/salty-dog" -w /salty-dog node:11-stretch make ci
|
||||
|
||||
local-stretch:
|
||||
docker run --rm -v "$(shell pwd):/salty-dog" -w /salty-dog node:11-alpine sh -c "apk add build-base && make ci"
|
||||
|
|
Loading…
Reference in New Issue