1
0
mirror of https://github.com/jordansissel/fpm synced 2025-09-06 09:12:07 +02:00

Fix directories such that the project root is included in the docker volume. This is necessary to make the root README.rst available

This commit is contained in:
Jordan Sissel 2016-11-27 02:47:48 -08:00
parent 408ea8ae4d
commit 0d33ff1f8f

@ -15,4 +15,4 @@ docker-prep: Dockerfile
.PHONY: build
build: | docker-prep
@docker run -itv $$PWD:/docs:z $(IMAGE) sh -c 'make -C docs html && chown -R 1000:1000 /docs'
docker run -it -v $$PWD/../:/project:z $(IMAGE) sh -xc 'make -C /project/docs html && chown -R 1000:1000 /project/docs'