playground: Remove web profile setup from Dockerfile.
Changed builder to use Node.js from PATH.
Dockerfile installs Node.js from repository instead of setting
up profile, which makes build considerably faster.
Replaced npm link with npm install and cleaned up Makefiles.
Change-Id: Ie01be66f4aeda371f6a102114c912829002ab175
diff --git a/pgbundle/Makefile b/pgbundle/Makefile
index f52e1d6..e0b5132 100644
--- a/pgbundle/Makefile
+++ b/pgbundle/Makefile
@@ -3,12 +3,13 @@
node_modules: package.json
@npm prune
- npm install
+ @npm install
@touch $@
.PHONY: clean
clean:
@$(RM) -rf node_modules
+ @$(RM) -rf npm-debug.log
.PHONY: lint
lint: