node.js - Docker 中的 Nuxt.js : missing dependencies

标签 node.js docker docker-compose nuxt.js

我正在尝试在 Docker 中运行 Nuxt.js 应用程序。我已经像这样设置了我的 Dockerfile:

FROM node:10.15.1 as base
WORKDIR /usr/src/app
COPY package.json ./
ENV HOST 0.0.0.0

FROM base as development
RUN npm install
COPY . .
ENV NODE_ENV development
EXPOSE 3000
CMD [ "npm", "run", "dev" ]

还有我的 docker-compose.yml:

version: "3.7"
services:
  frontend:
    container_name: frontend
    restart: unless-stopped
    build:
      context: .
      target: development
    volumes:
      - .:/usr/src/app
      - /usr/src/app/node_modules
    ports:
      - "3000:3000"

当我运行docker-compose up时,我得到了

frontend    | These dependencies were not found:                    friendly-errors 10:52:33
frontend    |                                                       friendly-errors 10:52:33
frontend    | * core-js/modules/es6.array.find in ./.nuxt/client.js friendly-errors 10:52:33
frontend    | * core-js/modules/es6.array.iterator in ./.nuxt/client.js
frontend    | * core-js/modules/es6.date.to-string in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.function.name in ./.nuxt/client.js
frontend    | * core-js/modules/es6.object.assign in ./.nuxt/client.js
frontend    | * core-js/modules/es6.object.keys in ./.nuxt/utils.js friendly-errors 10:52:33
frontend    | * core-js/modules/es6.promise in ./.nuxt/client.js    friendly-errors 10:52:33
frontend    | * core-js/modules/es6.regexp.constructor in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.regexp.match in ./.nuxt/client.js
frontend    | * core-js/modules/es6.regexp.replace in ./.nuxt/middleware.js
frontend    | * core-js/modules/es6.regexp.search in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.regexp.split in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.regexp.to-string in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.string.includes in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
frontend    | * core-js/modules/es6.string.iterator in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.string.repeat in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.string.starts-with in ./.nuxt/utils.js
frontend    | * core-js/modules/es6.symbol in ./.nuxt/middleware.js, ./.nuxt/components/nuxt-link.client.js
frontend    | * core-js/modules/es7.array.includes in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
frontend    | * core-js/modules/es7.promise.finally in ./.nuxt/client.js
frontend    | * core-js/modules/es7.symbol.async-iterator in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
frontend    | * core-js/modules/web.dom.iterable in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
frontend    |                                                       friendly-errors 10:52:33
frontend    | To install them, you can run: npm install --save core-js/modules/es6.array.find core-js/modules/es6.array.iterator core-js/modules/es6.date.to-string core-js/modules/es6.function.name core-js/modules/es6.object.assign core-js/modules/es6.object.keys core-js/modules/es6.promise core-js/modules/es6.regexp.constructor core-js/modules/es6.regexp.match core-js/modules/es6.regexp.replace core-js/modules/es6.regexp.search core-js/modules/es6.regexp.split core-js/modules/es6.regexp.to-string core-js/modules/es6.string.includes core-js/modules/es6.string.iterator core-js/modules/es6.string.repeat core-js/modules/es6.string.starts-with core-js/modules/es6.symbol core-js/modules/es7.array.includes core-js/modules/es7.promise.finally core-js/modules/es7.symbol.async-iterator core-js/modules/web.dom.iterable
frontend    | ℹ Waiting for file changes                                            10:52:33
frontend    |
frontend    |  READY  Server listening on http://0.0.0.0:3000                       10:52:33
frontend    |

我的项目在没有 docker 的情况下工作正常,而且我在另一个 Vue 项目(不是 Nuxt)中使用几乎相同的 Dockerfile。经过一番研究,我找到了一个将 @babel/polyfill 添加到我的依赖项中的解决方案。但是当我这样做时,它会提示下一个缺少的依赖项,所以我猜 Nuxt 安装的所有依赖项都丢失了。而且这并不能解释为什么它在没有 Docker 的情况下运行。

当我运行 docker-compose run sh 进入 shell,然后运行 ​​ls -lah 列出所有文件时:

-rw-r--r--   1 root root   32 Feb  1 13:48 .dockerignore
-rw-r--r--   1 root root 1.1K Feb  1 13:23 .eslintrc.js
drwxr-xr-x  10 root root  320 Feb  2 09:17 .git
-rw-r--r--   1 root root 1.2K Feb  1 13:01 .gitignore
drwxr-xr-x  14 root root  448 Feb  2 10:52 .nuxt
-rw-r--r--   1 root root  334 Feb  2 10:51 Dockerfile
-rw-r--r--   1 root root  370 Feb  1 13:01 README.md
drwxr-xr-x   3 root root   96 Feb  1 13:01 assets
drwxr-xr-x   4 root root  128 Feb  1 13:01 components
drwxr-xr-x   4 root root  128 Feb  1 13:01 layouts
drwxr-xr-x   3 root root   96 Feb  1 13:01 middleware
drwxr-xr-x 798 root root  32K Feb  2 10:56 node_modules
-rw-r--r--   1 root root 1.7K Feb  1 13:45 nuxt.config.js
-rw-r--r--   1 root root 363K Feb  1 13:19 package-lock.json
-rw-r--r--   1 root root  612 Feb  2 10:06 package.json
drwxr-xr-x   4 root root  128 Feb  1 13:01 pages
drwxr-xr-x   4 root root  128 Feb  1 13:01 plugins
drwxr-xr-x   3 root root   96 Feb  1 13:01 server
drwxr-xr-x   4 root root  128 Feb  1 13:01 static
drwxr-xr-x   3 root root   96 Feb  1 13:01 store

我看到 node_modules.nuxt 目录存在。 core-js 包也存在于 node_modules 中。

有什么想法吗?

最佳答案

我也遇到了同样的问题。我用

解决了这个问题

npm 我 core-js@2.6.5

我认为有一个 nuxt 依赖项正在使用旧的 core-js 版本,而这个依赖项会产生此错误。

我在我的 package-lock.json 中找到了这个

    "@nuxt/babel-preset-app": {
      "version": "2.5.1",
      "resolved": "https://registry.npmjs.org/@nuxt/babel-preset-app/-/babel-preset-app-2.5.1.tgz",
      "requires": {
        "@babel/core": "^7.4.0",
        "@babel/plugin-proposal-class-properties": "^7.4.0",
        "@babel/plugin-proposal-decorators": "^7.4.0",
        "@babel/plugin-syntax-dynamic-import": "^7.2.0",
        "@babel/plugin-transform-runtime": "^7.4.0",
        "@babel/preset-env": "^7.4.2",
        "@babel/runtime": "^7.4.2",
        "@vue/babel-preset-jsx": "^1.0.0-beta.2",
        "core-js": "^2.6.5"
      },
      "dependencies": {
        "core-js": {
          "version": "2.6.5",
          "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz",
        }
      }
    },

关于node.js - Docker 中的 Nuxt.js : missing dependencies,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54492385/

相关文章:

docker - Apache Mesos + Docker + Karaf Cellar 集群

node.js - 使用 docker-compose 时, Node 应用程序无法连接到 Redis

docker compose 命令 down 和 up 不会创建新的图像和容器

docker - 如何使用 docker-compose 链接从另一个容器内访问用户名和密码详细信息

docker - 在Docker桥上访问服务

javascript - 如何打破 async.js 每个循环?

javascript - 无法缩小此文件中的代码

html - 在浏览器内查看 PDF - 在 Chrome 中使用 POST 时出现问题

sql-server - Flyway 错误 - 当我运行 migrate 命令时。我得到 "Unable to calculate checksum"

javascript - 谁提供了 Express 中间件中的 next() 功能?