From 35a2a656d3408764359fec2d5f76277c5d39543b Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 22 May 2017 12:25:18 -0700 Subject: [PATCH] doc: fix path to node --- docs/tutorials/packaging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/packaging.md b/docs/tutorials/packaging.md index e07bdd8c7..733bf847b 100644 --- a/docs/tutorials/packaging.md +++ b/docs/tutorials/packaging.md @@ -83,7 +83,7 @@ FROM cloudron/base:0.10.0 ADD server.js /app/code/server.js -CMD [ "/usr/local/node-4.4.7/bin/node", "/app/code/server.js" ] +CMD [ "/usr/local/node-4.7.3/bin/node", "/app/code/server.js" ] ``` The `FROM` command specifies that we want to start off with Cloudron's [base image](/references/baseimage.html). @@ -94,7 +94,7 @@ The `ADD` command copies the source code of the app into the directory `/app/cod about the `/app/code` directory and it is merely a convention we use to store the application code. The `CMD` command specifies how to run the server. The base image already contains many different versions of -node.js. We use Node 4.4.7 here. +node.js. We use Node 4.7.3 here. This Dockerfile can be built and run locally as: ```