From 0248f11d4ab1b701a6e7eecd2476939ab554ad38 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Sun, 10 Dec 2017 11:56:34 -0700 Subject: Make push in seaparate command. Isort updated packages. Dasht in initial pull down --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7dc19f7..972f645 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,10 @@ help: setup: ## Clone down additional repos that are needed for building git clone git@github.com:thornycrackers/.nvim.git nvim git clone git@github.com:thornycrackers/vim-options.git + git clone https://github.com/sunaku/dasht build: ## Build the base image docker build -t thornycrackers/neovim . - docker push $(IMAGENAME) 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;' @@ -25,3 +25,6 @@ enter: ## Enter the running container clean: down ## Remove the image and any stopped containers docker rm $(CONTAINERNAME) || echo 'No container to remove' + +push: + docker push $(IMAGENAME) -- cgit v1.2.3