annabunches.net/Makefile

13 lines
285 B
Makefile
Raw Normal View History

DOCKER_IMAGE := cr.annabunch.es/annabunches-static
all: build
serve:
docker run --rm -it -p 4000:4000 -v $(shell pwd):/srv/jekyll jekyll/jekyll jekyll serve --drafts --future --safe -d /tmp/site --trace
build:
docker build -t ${DOCKER_IMAGE} .
push:
docker push ${DOCKER_IMAGE}