diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-05-24 12:22:23 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-05-24 12:22:23 -0600 |
commit | d01dd5d23297705842ea7295855726f49cdef52e (patch) | |
tree | 51ae48824be337a519a4f58d9081095c05a5bccc /Makefile | |
parent | f25683aeb96ac17aa0610cd2fda1c77b0a888eeb (diff) |
add build-nocache, update known third parties
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -15,6 +15,9 @@ setup: ## Clone down additional repos that are needed for building build: ## Build the base image docker build -t thornycrackers/neovim . +build-nocache: ## Build the base image with no cache + docker build --no-cache=true -t thornycrackers/neovim . + up: build ## Bring the container up docker run -dP -v $(CURDIR):/root/app --name $(CONTAINERNAME) $(IMAGENAME) /bin/bash -c 'while true; do echo hi; sleep 1; done;' |