mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-08 12:11:11 -06:00
12 lines
410 B
Makefile
12 lines
410 B
Makefile
.PHONY: build_book
|
|
build_book: build_docker_image
|
|
docker run -it -v .:/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make build_pdf"
|
|
|
|
.PHONY: release
|
|
release: build_docker_image
|
|
docker run -it -v .:/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make release"
|
|
|
|
.PHONY: build_docker_image
|
|
build_docker_image:
|
|
docker build -t the-sourdough-framework -f Dockerfile .
|