Update site to use the latest version of our theme. This requires stuffing our local dev into a docker container because the latest hugo breaks the theme.

This commit is contained in:
2024-07-03 16:00:18 +00:00
parent 749796b735
commit 0277890db3
4 changed files with 5 additions and 54 deletions

View File

@ -6,7 +6,7 @@ DOCKER_TAG := latest
all: serve
serve:
hugo serve -D --bind 0.0.0.0 -b http://${DEV_IP}:1313/
sudo docker run --rm -it -p 1313:1313 -v ${PWD}:/src/ klakegg/hugo serve -D -b http://${DEV_IP}:1313/
build:
sudo docker build --no-cache -t ${DOCKER_IMAGE}:${DOCKER_TAG} .