Update docker util script and travis to use new base container

This commit is contained in:
zvecr
2019-06-05 01:17:01 +01:00
committed by skullydazed
parent 21fc6be41b
commit 0a03f7cff7
5 changed files with 4 additions and 24 deletions

View File

@ -22,7 +22,7 @@ fi
# if docker is installed - call make within the qmk docker image
if command -v docker >/dev/null; then
function make() {
docker run --rm -e MAKEFLAGS="$MAKEFLAGS" -w /qmk_firmware/ -v "$PWD":/qmk_firmware --user $(id -u):$(id -g) qmkfm/qmk_firmware make "$@"
docker run --rm -e MAKEFLAGS="$MAKEFLAGS" -w /qmk_firmware/ -v "$PWD":/qmk_firmware --user $(id -u):$(id -g) qmkfm/base_container make "$@"
}
fi