11 lines
154 B
Makefile
11 lines
154 B
Makefile
|
DOCKER_IMAGE := cr.annabunch.es/annabunches-static
|
||
|
|
||
|
all: site
|
||
|
|
||
|
site:
|
||
|
jekyll build
|
||
|
docker build -t ${DOCKER_IMAGE} .
|
||
|
|
||
|
push:
|
||
|
docker push ${DOCKER_IMAGE}
|