4 Star 0 Fork 155

liuqing2018/newbee-mall-vue-app

forked from luguo/newbee-mall-vue-app 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 934 Bytes
一键复制 编辑 原始数据 按行查看 历史
luguo 提交于 2024-04-10 12:07 . add
# 构建镜像基于onbuild_vue:v1镜像
FROM node:12 AS builder
#切换到/app工作目录下
WORKDIR /app
# 复制package.json到app目录下
COPY package.json ./
# 执行npm命令
RUN npm config set registry https://mirrors.huaweicloud.com/repository/npm/ && \
npm install
# 复制当前目录下的所有文件到app目录下
COPY . ./
# 执行npm run build命令
RUN npm run build
# 构建镜像基于nginx:alpine镜像
FROM nginx:stable-alpine
# 声明端口80。仅声明作用,如果docker run -P 就会指定该端口
EXPOSE 80
# 从名为builder的阶段,复制打包好的文件到/usr/share/nginx/html/
COPY --from=builder /app/dist /usr/share/nginx/html
# 删除原本的默认配置
RUN rm /etc/nginx/conf.d/default.conf
# 从名为builder的阶段,复制nginx配置文件到/etc/nginx/conf.d/
COPY --from=builder /app/nginx.conf /etc/nginx/conf.d/
CMD ["nginx", "-g", "daemon off;"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/liuqing2018/newbee-mall-vue-app.git
git@gitee.com:liuqing2018/newbee-mall-vue-app.git
liuqing2018
newbee-mall-vue-app
newbee-mall-vue-app
master

搜索帮助