Skip to content

Commit

Permalink
example only. Use files in your project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilson, Dan authored and Wilson, Dan committed Oct 30, 2015
1 parent 542859c commit e4c8141
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions continuousdelivery/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
FROM node:0.10-onbuild
# replace this with your application's default port

EXPOSE 3000
2 changes: 1 addition & 1 deletion continuousdelivery/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"preferGlobal": true,
"version": "0.0.1",
"author": "<[email protected]>",
"description": "a hello world nodejs app",
"description": "a hello world nodejs app.",
"license": "MIT",
"engines": {
"node": ">=0.10"
Expand Down
2 changes: 1 addition & 1 deletion continuousdelivery/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var http = require('http');

http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
res.end('Hello World v1\n');
}).listen(3000, '0.0.0.0');

console.log('Server running at http://0.0.0.0:3000/');

0 comments on commit e4c8141

Please sign in to comment.