Merge pull request #24465 from tengqm/zh-sync-minikube

[zh] Sync changes to Hello Minikube page
This commit is contained in:
Kubernetes Prow Robot
2020-10-10 22:42:47 -07:00
committed by GitHub
3 changed files with 184 additions and 213 deletions
-4
View File
@@ -1,4 +0,0 @@
FROM node:6.14.2
EXPOSE 8080
COPY server.js .
CMD [ "node", "server.js" ]
-9
View File
@@ -1,9 +0,0 @@
var http = require('http');
var handleRequest = function(request, response) {
console.log('Received request for URL: ' + request.url);
response.writeHead(200);
response.end('Hello World!');
};
var www = http.createServer(handleRequest);
www.listen(8080);