Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down