terraform/website/Makefile

25 lines
511 B
Makefile
Raw Normal View History

2017-04-05 17:28:34 +02:00
VERSION?="0.3.22"
build:
@echo "==> Starting build in Docker..."
@docker run \
--interactive \
--rm \
--tty \
--volume "$(shell pwd):/website" \
hashicorp/middleman-hashicorp:${VERSION} \
bundle exec middleman build --verbose --clean
2015-09-24 03:51:42 +02:00
2016-10-31 23:36:33 +01:00
website:
@echo "==> Starting website in Docker..."
@docker run \
2017-04-05 17:28:34 +02:00
--interactive \
--rm \
2016-10-31 23:36:33 +01:00
--tty \
--publish "4567:4567" \
--publish "35729:35729" \
--volume "$(shell pwd):/website" \
hashicorp/middleman-hashicorp:${VERSION}
2015-09-24 03:51:42 +02:00
2017-04-05 17:28:34 +02:00
.PHONY: build website