2019-03-29 22:56:19 +00:00
|
|
|
VERSION?="0.3.39"
|
2015-10-13 21:50:23 +00:00
|
|
|
|
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}
|
2015-10-13 21:50:23 +00:00
|
|
|
|
2018-10-08 18:44:23 +00:00
|
|
|
test:
|
|
|
|
@echo "==> Running website tests..."
|
2018-10-09 19:28:46 +00:00
|
|
|
./scripts/test.sh ${VERSION}
|
2018-10-08 18:44:23 +00:00
|
|
|
|
2017-04-06 22:37:36 +00:00
|
|
|
.PHONY: build website
|