23 lines
693 B
Makefile
23 lines
693 B
Makefile
.PHONY: all serve clean
|
|
|
|
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
|
|
PORT ?= 4000
|
|
IMAGE=danjones000/danielrayjones/ruby-with-bundler:1.0.0
|
|
|
|
all: serve
|
|
|
|
.image: Gemfile Gemfile.lock
|
|
docker build -t $(IMAGE) .
|
|
docker image inspect $(IMAGE) | jq -r '.[0].Id' | tee .image
|
|
|
|
_config.local.yml:
|
|
touch $@
|
|
|
|
_site/index.html: .image _config.local.yml
|
|
docker run -u $(shell id -u) --rm -v $(shell pwd):/app -w /app $(IMAGE) bundle exec jekyll build -c '_config.yml,_config.local.yml'
|
|
|
|
serve: _site/index.html
|
|
docker run --rm -it -v $(shell pwd):/app -w /app -p $(PORT):$(PORT) $(IMAGE) bundle exec jekyll serve -H 0.0.0.0 -P "$(PORT)" -c '_config.yml,_config.local.yml'
|
|
|
|
clean:
|
|
rm -rf _site
|