-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
33 lines (22 loc) · 906 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
DOCKER = docker
HUGO_VERSION = 0.88.1
DOCKER_IMAGE = k8-hugo
DOCKER_RUN = $(DOCKER) run --rm --interactive --tty --volume $(PWD):/src
.PHONY: all build build-preview serve docker-all
all: build ## Build site with production settings
build: ## Build site with production settings
hugo
build-preview: ## Build site with drafts and future posts enabled
hugo -D -F
production-build: build
non-production-build: ## Build the non-production site, which adds noindex headers to prevent indexing
hugo --enableGitInfo
serve: ## Boot the development server.
hugo server --ignoreCache --disableFastRender
docker-all: docker-image docker-build docker-serve
docker-image:
$(DOCKER) build . --tag $(DOCKER_IMAGE) --build-arg HUGO_VERSION=$(HUGO_VERSION)
docker-build:
$(DOCKER_RUN) $(DOCKER_IMAGE) hugo
docker-serve:
$(DOCKER_RUN) -p 1313:1313 $(DOCKER_IMAGE) hugo server --watch --bind 0.0.0.0