1 Star 0 Fork 21

zengqt/TangSengDaoDaoWeb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 538 Bytes
一键复制 编辑 原始数据 按行查看 历史
tangtaoit 提交于 2024-07-24 17:45 . fix: 修复一些警告
FROM node:18.17.1 as builder
WORKDIR /app
RUN curl -o- -L https://yarnpkg.com/install.sh | bash
# RUN yarn config set registry https://registry.npm.taobao.org -g
# RUN npm config set registry https://registry.npm.taobao.org
COPY . .
RUN yarn install && yarn build
FROM nginx:latest
COPY --from=builder /app/docker-entrypoint.sh /docker-entrypoint2.sh
COPY --from=builder /app/nginx.conf.template /
COPY --from=builder /app/apps/web/build /usr/share/nginx/html
ENTRYPOINT ["sh", "/docker-entrypoint2.sh"]
CMD ["nginx","-g","daemon off;"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zengqt/TangSengDaoDaoWeb.git
git@gitee.com:zengqt/TangSengDaoDaoWeb.git
zengqt
TangSengDaoDaoWeb
TangSengDaoDaoWeb
main

搜索帮助