Node HelloWorld
2024年06月24日
一、认识
二、目录
|- hello.js
|- Dockerfile
三、hello.js
console.log("Hello World");
四、Dockerfile
FROM node
ADD hello.js /
CMD ["node", "hello.js"]
五、生成镜像并运行镜像
通过 docker -t node-image .
生成镜像 , 如果要发布镜像, 那么生成镜像的时候,需要命名为 bolawen0928/node-image:latest
,保证镜像不会冲突。说明: bolawen0928
是 Docker Hub
用户名。
docker -t node-image .
通过 docker run node-image
运行镜像
docker run node-image