2023-08-30 16:27:02 +00:00
|
|
|
DOCKER_IMAGE := cr.annabunches.net/annabunches-static
|
2020-05-16 00:38:18 +00:00
|
|
|
DOCKER_TAG := latest
|
2019-12-05 00:05:02 +00:00
|
|
|
|
2020-05-15 01:45:53 +00:00
|
|
|
.PHONY: all build push
|
2019-12-05 00:05:02 +00:00
|
|
|
|
2020-05-15 21:15:51 +00:00
|
|
|
all: serve
|
|
|
|
|
|
|
|
serve:
|
2024-07-03 20:58:00 +00:00
|
|
|
hugo serve -D --bind 0.0.0.0 -b http://${DEV_IP}:1313/
|
2019-12-05 01:24:14 +00:00
|
|
|
|
|
|
|
build:
|
2023-09-13 01:52:19 +00:00
|
|
|
sudo docker build --no-cache -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
|
2019-12-05 00:05:02 +00:00
|
|
|
|
|
|
|
push:
|
2023-09-13 01:52:19 +00:00
|
|
|
sudo docker push ${DOCKER_IMAGE}:${DOCKER_TAG}
|