From f416ab2f81f2f02f9a55274e63333b6964ce9da1 Mon Sep 17 00:00:00 2001 From: Bryan Hyshka Date: Mon, 5 Mar 2018 11:04:01 -0700 Subject: add basic dockerfile setup --- Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..97e4d39 --- /dev/null +++ b/Makefile @@ -0,0 +1,25 @@ +.PHONY: build + +SHELL := /bin/bash +CONTAINERNAME=accli +IMAGENAME=accli + +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + +build: ## Build the Docker image + cp -r requirements.txt ./build + cp -r config.json ./build + docker build -t $(IMAGENAME) ./build + +up: build ## Bring the Docker container up + docker run -td -v $(PWD):/opt --name $(CONTAINERNAME) $(IMAGENAME) || echo 'Already up!' + +down: ## Stop the Docker container + docker stop $(CONTAINERNAME) + +enter: ## Enter the running Docker container + docker exec -it $(CONTAINERNAME) /bin/bash + +clean: down ## Stop and remove Docker container + docker rm $(CONTAINERNAME) -- cgit v1.2.3