- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试在 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/
要在标题(或谷歌)中简洁地描述这是一个棘手的问题。我有一个分类表,其中某些列可能会根据置信度列为“已删除”。我想用“未识别”替换任何显示“已删除”的列,后跟第一列中未识别的值以行方式说“掉落”。因此,
我在 VSCode 上使用 pygame 模块,但遇到了 pygame 没有 init 成员的问题。我遵循了 this 的解决方案关联。我编辑了用户设置并添加了 "python.linting
我的问题是如何解决丢失的脚本太旧或丢失!! checking for a BSD-compatible install... /usr/bin/install -c checking whether
我正在使用带有启动器的 Spring Boot。当我错误配置启动器(缺少或定义了错误的值)时,它会打印“缺少 bean”错误消息,而不是“缺少值”。很难找到这个错误。 我的开胃菜看起来像 @Condi
我在 Django 1.7 中遇到问题,我正在尝试将用户保存到表中,但我收到一个错误,指出该表不存在。 这是我正在执行的代码: from django.conf import settings fro
我正在查看 EhCache 统计数据,我看到了这些数字: CacheMisses: 75977 CacheHits: 38151 InMemoryCacheMisses: 4843 InMemoryC
我正在尝试使用这些数据运行 lme 模型: tot_nochc=runif(10,1,15) cor_partner=factor(c(1,1,0,1,0,0,0,0,1,0)) age=runif(
我在 Microsoft Visual Studio C++ 中编写了一个程序,并为此使用了 SFML。我包含了程序所需的正确的 .dll 文件,并将它们复制到“发布”文件夹中。有效。整个程序在我的电
在设置新的Reaction CSR应用程序、一些样板库等过程中。在控制台中收到以下错误:。现在,我不会去修复一些我没有维护的包。我怎么才能找到真正的问题呢?Vite dev Build没有报告错误。
我正在上 React Native 类(class),然后使用 Flow 尝试纠正类(class)中的错误,因为讲师没有使用任何类型检查。 我在 Flow 中遇到了另一个错误,通过在互联网上进行长时间
我想删除图像标签正在寻找的缺失错误。我不想要 ult 标签占位符,试图故意将其保留为空白,直到我使用回形针浏览上传照片。 我已经将 url(:missing) 更改为许多其他内容,例如 nil 等。是
CREATE TABLE customer(customer_id NUMBER(6) PRIMARY KEY , customer_name VARCHAR2(40) NOT NULL , cust
我正在设置 invisible reCAPTCHA在我的 Web 应用程序中并且无法验证用户的响应。 (即使我传递了正确的 POST 参数) 我通过调用 grecaptcha.execute(); 以
我搜索了 these SO results找不到与我的问题相关的任何内容。我怀疑这可能是重复的。 我目前正在 .NET C# 3.5 中编写 Microsoft.Office.Interop.Exce
我在同一行收到两个错误。 Bridge *在 Lan 类中排名第一。我错过了什么? #include #include #include using namespace std; class L
首先,我看到了一些解决方案,但我没有理解它们。我是 QT 的新手,甚至谷歌也没有帮助我。英语不是我的母语 这是在QT Creator 5.6中调试后的报错信息 C2143: syntax error:
有没有办法把表1展开成表2?就是将start_no和end_no之间的每一个整数作为seq_no字段输出,取原表的其他字段组成新表(表2)。 表 1: date source market
我在 Excel (2016) 中制作了一个旭日形图,并希望为所有数据点添加标签。问题是,Excel 会自动丢弃一些标签: 似乎标签被删除是因为数据点太小或标签字符串太长。如何让 Excel 显示所有
在 R 3.0.2 中,missing() 函数可以告诉我们是否缺少形式参数。 如何避免硬编码传递给丢失的变量名称?例如在 demoargs <- function(a=3, b=2, d) {
我试图在 UI 上的某些功能中返回一个按钮,但出现了一个奇怪的错误。有人可以帮忙吗? var div = "View" 我得到的错误是: 参数列表后缺少 )。 最佳答案 onclick="javas
我是一名优秀的程序员,十分优秀!