shoestrap/Makefile
ViViDboarder 5401bd67c6 Add Dockerfile to run dev env in an image
This is a large, 2.8GB image, but doable!
2021-06-09 17:07:15 -07:00

16 lines
265 B
Makefile

.PHONY: default test clean all
default: test
# Installs pre-commit hooks
.PHONY: install-hooks
install-hooks:
pre-commit install --install-hooks
.PHONY: test
test:
pre-commit run --all-files
.PHONY: docker-build
docker-build:
docker build . -t devenv-$(USER)