1 Star 0 Fork 0

lzpeng723/lzpeng723.gitee.io

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 395 Bytes
一键复制 编辑 原始数据 按行查看 历史
lzpeng723 提交于 2022-01-28 15:57 . 更改镜像
# 基础镜像使用node:14-alpine
FROM node:14-alpine AS build
# 工作目录
WORKDIR /app
# 复制文件
COPY . /app
# 安装依赖 打包
RUN npm install --registry=https://registry.npm.taobao.org && npm run build
# 使用nginx镜像
FROM nginx:alpine
# 复制文件
COPY --from=build /app/dest /usr/share/nginx/html
# 暴漏端口
EXPOSE 80
# 运行nginx
CMD ["nginx", "-g", "daemon off;"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lzpeng723/lzpeng723.gitee.io.git
git@gitee.com:lzpeng723/lzpeng723.gitee.io.git
lzpeng723
lzpeng723.gitee.io
lzpeng723.gitee.io
gh-pages-source

搜索帮助