2023-08-31 02:29:50 +00:00
|
|
|
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:
|
2023-09-13 01:51:48 +00:00
|
|
|
sudo docker build --no-cache -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
|
2023-08-31 02:29:50 +00:00
|
|
|
|
|
|
|
push:
|
2023-09-13 01:51:48 +00:00
|
|
|
sudo docker push ${DOCKER_IMAGE}:${DOCKER_TAG}
|