From 5611c0e381d0309f92c755adaff07c23c8ecbd65 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Mon, 16 Mar 2026 13:13:18 -0700 Subject: [PATCH] use latest hash from reop --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1c958ee4..1dea83c6 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ IMAGE_NAME = df-site-build # runs the Docker container to build the site build: @if ! docker image inspect $(IMAGE_NAME) > /dev/null 2>&1; then \ - docker build -t $(IMAGE_NAME) https://github.com/apache/infrastructure-actions.git#main:pelican; \ + docker build -t $(IMAGE_NAME) https://github.com/apache/infrastructure-actions.git#06c3bf8a70aeddc0db4febabfbe56921d7f61ab3:pelican; \ fi docker run -it --rm -p8000:8000 -v $(PWD):/site --entrypoint /bin/bash $(IMAGE_NAME) -c \ "pelicanasf content -o blog && python3 -m http.server 8000"