16 lines
293 B
Makefile
16 lines
293 B
Makefile
|
DOCKER_IMAGE := cr.annabunches.net/freyjaskiss-static
|
||
|
DOCKER_TAG := latest
|
||
|
|
||
|
.PHONY: all build push
|
||
|
|
||
|
all: serve
|
||
|
|
||
|
serve:
|
||
|
hugo serve -D --bind 0.0.0.0 -b http://${DEV_IP}:1313/
|
||
|
|
||
|
build:
|
||
|
docker build --no-cache -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
|
||
|
|
||
|
push:
|
||
|
docker push ${DOCKER_IMAGE}:${DOCKER_TAG}
|