1 Star 0 Fork 1

stanley/excalidraw-cn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
stanley 提交于 2023-07-28 15:50 . first commit
FROM node:12.18.4 as build
WORKDIR /tmp
COPY . .
RUN npm cache verify
RUN npm cache clean -f
RUN yarn --ignore-optional --network-timeout 600000
ARG NODE_ENV=production
COPY . .
RUN yarn build:app:docker
# 安装依赖并构建
RUN npm install --registry https://registry.npm.taobao.org && npm run build
# 以nginx:1.12.2为基础镜像
# nginx后面跟的tag,可以在docker hub中(上方网址)查找项目所需的tag
FROM nginx:1.12.2
# 修改/usr/share/nginx/html里面的内容为前端需要部署的静态文件,这样前端就跑在nginx上了
WORKDIR /usr/share/nginx/html
RUN rm -f *
COPY --from=build /tmp/dist .
# 替换default.conf文件,解决单页面部署后刷新404问题
COPY --from=build /tmp/configs/nginx.conf /etc/nginx/conf.d/default.conf
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stanleyed/excalidraw-cn.git
git@gitee.com:stanleyed/excalidraw-cn.git
stanleyed
excalidraw-cn
excalidraw-cn
master

搜索帮助