mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 09:16:28 +00:00
5401bd67c6
This is a large, 2.8GB image, but doable!
16 lines
265 B
Makefile
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)
|