加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dockerfile 297 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:20.12.2-alpine AS builder
WORKDIR /app
COPY . /app/
RUN npm install pnpm -g
RUN pnpm install
RUN pnpm build
FROM pierrezemb/gostatic
COPY --from=builder /app/dist /srv/http
EXPOSE 8043
# 内部静态服务
# -fallback 用来指定 spa
CMD ["/goStatic", "-fallback" "/index.html"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化