dockerfile: containerized htmlproofer

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-05-09 15:08:40 +02:00
parent dc1a99b7b0
commit 8da7d9445d
6 changed files with 44 additions and 12 deletions

View File

@@ -29,9 +29,13 @@ release:
vendor:
$(BUILDX_CMD) bake vendor
# Check for broken links
htmlproofer:
$(BUILDX_CMD) bake htmlproofer
# Deploy website and run it through Docker compose
# Available in your browser at http://localhost:4000
deploy:
docker compose up --build
.PHONY: buildx-yaml release vendor deploy
.PHONY: buildx-yaml release vendor htmlproofer deploy