From d039043c38b92a2fdc2b79213f83a2f2b84a080a Mon Sep 17 00:00:00 2001
From: startxfr <clarue@startx.fr>
Date: Sun, 17 May 2015 22:55:54 +0200
Subject: change in nodejs template

---
 Services/nodejs/Dockerfile | 18 ++++++++----------
 Services/nodejs/app/app.js |  4 ----
 2 files changed, 8 insertions(+), 14 deletions(-)

(limited to 'Services/nodejs')

diff --git a/Services/nodejs/Dockerfile b/Services/nodejs/Dockerfile
index 872648a..9b76beb 100644
--- a/Services/nodejs/Dockerfile
+++ b/Services/nodejs/Dockerfile
@@ -3,15 +3,13 @@ MAINTAINER Christophe LARUE <dev@startx.fr>
 
 RUN yum -y install nodejs npm \
     && yum clean all \
-    && mkdir -p /var/nodejs /var/nodejs/app \
-    && chmod ug+rx /var/nodejs/app 
-COPY sx/* /sx/
-COPY app/* /var/nodejs/app/
-RUN chmod ug+rx /sx/nodejs* 
+    && mkdir -p /app \
+    && chmod ug+rx /app
+VOLUME ["/app"]
+WORKDIR /app
+COPY app /app
+ENV MAIN_APP /app/app.js
+ENV NODE_PATH /app/node_modules
 
 EXPOSE 8000
-VOLUME ["/var/nodejs/app"]
-
-ENV MAIN_APP /var/nodejs/app/app.js
-
-CMD ["/sx/nodejs_run.sh"]
\ No newline at end of file
+ENTRYPOINT ["node", "/app/app.js"]
\ No newline at end of file
diff --git a/Services/nodejs/app/app.js b/Services/nodejs/app/app.js
index 1dd5446..aebd6b8 100644
--- a/Services/nodejs/app/app.js
+++ b/Services/nodejs/app/app.js
@@ -1,14 +1,10 @@
 // Load the http module to create an http server.
 var http = require('http');
 
-// Configure our HTTP server to respond with Hello World to all requests.
 var server = http.createServer(function (request, response) {
   response.writeHead(200, {"Content-Type": "text/plain"});
   response.end("Hello World\n");
 });
-
-// Listen on port 8000, IP defaults to 127.0.0.1
 server.listen(8000);
 
-// Put a friendly message on the terminal
 console.log("Server running at http://127.0.0.1:8000/");
\ No newline at end of file
-- 
cgit v1.2.3