gpt4 book ai didi

docker - 启动 Nuxt.js 应用程序时出错 : No build files found

转载 作者:行者123 更新时间:2023-12-05 04:51:18 28 4
gpt4 key购买 nike

$ npm run start

> app@1.2.3 start /home/app/ui/web
> nuxt start

FATAL No build files found in /home/app/ui/web/.nuxt/dist/server.
Use either `nuxt build` or `builder.build()` or start nuxt in development mode.

在多阶段构建的 Docker 镜像中启动 Nuxt.js 应用程序时发生错误:

  1. npm ci && npm run build 在构建阶段图像中
  2. 将构建的应用程序 .nuxt 以及 package.jsonnode_modules 复制到运行阶段图像中

关于环境的一些细节。

Nuxt.js 应用模式是'spa'。丢失的文件确实存在于最终图像中,没有使用任何卷/安装。构建阶段和运行阶段镜像之间的操作系统用户名不同,但是(希望如此)情况不应如此。

Nuxt.js 2.12.2,Node.js 14.16.0。

最佳答案

nuxt.config.js 丢失了。

在我将它复制到运行阶段镜像中,并从 localhost 切换到 server.host0.0.0.0 之后nuxt.config.js 中的属性,容器运行正常:

> app@1.2.3 start /home/app/ui/web
> nuxt start

ℹ Listening on: http://172.17.0.2:3000/

因此,在服务器部署模式下运行产品构建所需的项目(表面上)如下:

/.nuxt
/node_modules
nuxt.config.js
package.json

关于最终工件中应包含的内容,文档在某种程度上含糊不清: https://nuxtjs.org/docs/2.x/get-started/commands/#server-deployment

激发故障排除的另一个 SO 问题: Nuxt deployment error: server resources are not available

更新

将 Nuxt 更新到 2.15.3,从临时 npm 构建切换到通过 yarn 的可重现构建。

构建阶段变成了 yarn install --frozen-lockfile && yarn build。此外,将 node_modules 从构建阶段复制到运行阶段会将开发依赖项带入 prod,Nuxt 应用程序的 b/c prod 构建需要开发依赖项。因此,在运行阶段,切换到 yarn install --frozen-lockfile --production=true 而不是从之前的构建阶段复制 node_modules

从构建阶段复制的用于在服务器部署模式 (https://nuxtjs.org/docs/2.x/features/deployment-targets/#server-hosting) 中运行产品 Nuxt 应用程序的所需项目如下:

/.nuxt
nuxt.config.js
package.json
yarn.lock

关于docker - 启动 Nuxt.js 应用程序时出错 : No build files found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66987028/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com