open-nomad/website/Makefile

30 lines
610 B
Makefile
Raw Normal View History

VERSION?="0.3.41"
2017-04-06 22:37:36 +00:00
build:
@echo "==> Starting build in Docker..."
@docker run \
--interactive \
--rm \
--tty \
--volume "$(shell pwd):/website" \
2018-03-08 20:31:17 +00:00
-e "ENV=production" \
2017-04-06 22:37:36 +00:00
hashicorp/middleman-hashicorp:${VERSION} \
bundle exec middleman build --verbose --clean
2016-10-22 03:34:59 +00:00
website:
@echo "==> Starting website in Docker..."
@docker run \
2017-04-06 22:37:36 +00:00
--interactive \
--rm \
2016-10-22 03:34:59 +00:00
--tty \
--publish "4567:4567" \
--publish "35729:35729" \
--volume "$(shell pwd):/website" \
hashicorp/middleman-hashicorp:${VERSION}
test:
@echo "==> Running website tests..."
./scripts/test.sh ${VERSION}
2017-04-06 22:37:36 +00:00
.PHONY: build website