# Makefile # build target should be built even if no files depend on it .PHONY: build # run locally site: uv run python makesite.py --params params-local.json cd _site && python -m SimpleHTTPServer 2> /dev/null || python3 -m http.server # docker build image build: docker build -t source.madyanne.fr/yax/blog . # docker publish image publish: docker push source.madyanne.fr/yax/blog