[zh] Sync changes to Hello Minikube page

This is a sync of English site change (236c65c18e).
This commit is contained in:
Qiming Teng
2020-10-10 14:43:31 +08:00
parent a0b2217955
commit 34b8e9515a
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);