aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c44aca5b8704efaeba5f246205ae0a7e61106511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'


build-python: ## Build the neovim python image, this is the base image
	docker build -f Dockerfile.python -t thornycrackers/neovim:python .

build-php: ## Build the neovim php image, depends on python tag
	docker build -f Dockerfile.php -t thornycrackers/neovim:php .

build-javascript: ## Build the neovim javascript image, depends on php tag
	docker build -f Dockerfile.javascript -t thornycrackers/neovim:javascript .

build-shell: ## Build the neovim shell image, depends on javascript tag
	docker build -f Dockerfile.shell -t thornycrackers/neovim .

build: ## Build all the whole thing
	make build-python
	make build-php
	make build-javascript
	make build-shell