packer-cn/website/Makefile

26 lines
535 B
Makefile
Raw Normal View History

2018-04-17 14:44:43 -04:00
VERSION?="0.3.37"
2017-03-08 14:22:54 -05:00
2017-04-06 18:16:02 -04:00
build:
@echo "==> Starting build in Docker..."
@docker run \
--interactive \
--rm \
--tty \
--volume "$(shell pwd):/website" \
-e "ENV=production" \
2017-04-06 18:16:02 -04:00
hashicorp/middleman-hashicorp:${VERSION} \
bundle exec middleman build --verbose --clean
2017-04-06 18:16:02 -04:00
2017-03-08 14:22:54 -05:00
website:
@echo "==> Starting website in Docker..."
@docker run \
2017-04-06 18:16:02 -04:00
--interactive \
--rm \
2017-03-08 14:22:54 -05:00
--tty \
--publish "4567:4567" \
--publish "35729:35729" \
--volume "$(shell pwd):/website" \
hashicorp/middleman-hashicorp:${VERSION}
2017-04-06 18:16:02 -04:00
.PHONY: build website