Add the ability to build a basic Docker container.

This commit is contained in:
Dave Page
2017-09-21 16:49:37 +01:00
parent 18dc938556
commit bcba596408
6 changed files with 191 additions and 1 deletions

View File

@@ -47,11 +47,14 @@ check-js: install-node linter
cd web && yarn run karma start -- --single-run
# Include all clean sub-targets in clean
clean: clean-appbundle clean-dist clean-docs clean-pip clean-src
clean: clean-appbundle clean-docker clean-dist clean-docs clean-pip clean-src
clean-appbundle:
rm -rf mac-build/
clean-docker:
rm -rf docker-build/
clean-dist:
rm -rf dist/
@@ -64,6 +67,9 @@ clean-pip:
clean-src:
rm -rf src-build/
docker:
./pkg/docker/build.sh
docs:
LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 $(MAKE) -C docs/en_US -f Makefile.sphinx html