本篇内容主要讲解“Docker如何运行Vue项目”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Docker如何运行Vue项目”吧!
本人非前端,只是为了部署才。Dockfile的内容主要来源于Vue官方:https://cn.vuejs.org/v2/cookbook/dockerize-vuejs-app.html
直接上Dockerfile吧,和官方的几乎一样,但细节上面做了配置,更贴近实际使用。详情请看Dockerfile内容:
FROM node:lts-alpine # 如果你在国内,这行配置很有必要,不然打包会非常非常慢,原因嘛,都懂。 RUN npm config set registry https://registry.npm.taobao.org # install simple http server for serving static content RUN npm install -g http-server # make the 'app' folder the current working directory WORKDIR /app # copy both 'package.json' and 'package-lock.json' (if available) COPY package*.json ./ # install project dependencies RUN npm install # copy project files and folders to the current working directory (i.e. 'app' folder) COPY . . # build app for production with minification RUN npm run build:prod EXPOSE 9000 # 加入端口自定义配置,避免与其他K8S容器端口冲突 CMD [ "http-server","-p","9000", "dist" ]
构建Docker镜像:
docker build -t registry.cn-hangzhou.aliyuncs.com/xxx/xxx .
测试镜像可用性:
docker run -p 80:9000 --rm registry.cn-hangzhou.aliyuncs.com/xxx/xxx
到此,相信大家对“Docker如何运行Vue项目”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。