mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-09 12:41:12 -06:00
12 lines
408 B
Makefile
12 lines
408 B
Makefile
PHONY: build_pdf
|
|
build_pdf: build_docker_image
|
|
docker run -it -v $(PWD):/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make build_pdf"
|
|
|
|
.PHONY: bake
|
|
bake: build_docker_image
|
|
docker run -it -v $(PWD):/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make bake"
|
|
|
|
.PHONY: build_docker_image
|
|
build_docker_image:
|
|
docker build -t the-sourdough-framework -f Dockerfile .
|