diff --git a/Dockerfile b/Dockerfile index 84677b8..ae6786c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,4 +19,4 @@ RUN npm install COPY . . EXPOSE 3000 -CMD [ "node", "index.js" ] \ No newline at end of file +CMD [ "node", "index.js" ] diff --git a/README.md b/README.md index 56216d7..76d8a3c 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -# nodejs \ No newline at end of file +# nodejs app + diff --git a/index.js b/index.js index 357271f..6ddccea 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const PORT = 3000; app.use(express.static('public')); app.get('/', (req, res) => { - res.send('Hello World!'); + res.send('Hello World 1!'); }); app.listen(PORT, () => console.log(`Server listening on port: ${PORT}`)); diff --git a/public/index.html b/public/index.html index c79856c..b8199aa 100644 --- a/public/index.html +++ b/public/index.html @@ -8,6 +8,6 @@
-
+