Docker Node Alpine Image Build 在 node-gyp 上失败
Posted
技术标签:
【中文标题】Docker Node Alpine Image Build 在 node-gyp 上失败【英文标题】:Docker Node Alpine Image Build Fails on node-gyp 【发布时间】:2019-06-23 00:38:29 【问题描述】:我正在尝试 Dockerize 一个 Vue.js 应用程序。我使用node:10.15-alpine
Docker 映像作为基础。映像构建失败并出现以下错误:
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.
gyp ERR! stack at PythonFinder.failNoPython (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:484:19)
gyp ERR! stack at PythonFinder.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:406:16)
gyp ERR! stack at F (/usr/local/lib/node_modules/npm/node_modules/which/which.js:68:16)
gyp ERR! stack at E (/usr/local/lib/node_modules/npm/node_modules/which/which.js:80:29)
gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/which/which.js:89:16
gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/isexe/index.js:42:5
gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/isexe/mode.js:8:5
gyp ERR! stack at FSReqWrap.oncomplete (fs.js:154:21)
gyp ERR! System Linux 4.9.125-linuxkit
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /app/node_modules/inotify
gyp ERR! node -v v10.15.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted "os":"darwin","arch":"any" (current: "os":"linux","arch":"x64")
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! inotify@1.4.2 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the inotify@1.4.2 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
应用程序在我的 Ubuntu 机器上运行。我已经在网上搜索了解决方案。
我试过了:
FROM node:10.15-alpine
EXPOSE 8080
RUN mkdir -p /app/src
WORKDIR /app
COPY build/ config/ dist/ static/ .babelrc .postcs-s-rc.js index.html /app/
COPY package*.json ./
RUN apk add --no-cache make gcc g++ python && \
npm install --production --silent && \
apk del make gcc g++ python
ADD src/ /app/src/
CMD ["npm", "start"]
这也失败了。错误输出非常冗长,并且引用了 C/C++ 代码。
这是我当前的 Dockerfile:
FROM node:10.15-alpine
EXPOSE 8080
RUN mkdir -p /app/src
WORKDIR /app
COPY build/ config/ dist/ static/ .babelrc .postcs-s-rc.js index.html /app/
COPY package*.json ./
RUN npm install
ADD src/ /app/src/
CMD ["npm", "start"]
谁能帮我用 node-gyp 解决这个问题?我希望能够使用 Docker 容器运行应用程序,但我需要先构建映像。
更新
由于构建在我的 Ubuntu 机器上运行,我检查了 node
版本。它是 8.12,所以我切换到使用 node:8.12-alpine
图像,应用程序现在可以使用以下 Dockerfile:
FROM node:8.12-alpine
RUN apk add g++ make python
EXPOSE 8080
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN npm install
CMD ["npm", "start"]
【问题讨论】:
GitHub 上的这个问题可能会提供一些见解:Document how to use alpine with dependencies that rely on node-gyp 谢谢@zero298 我确实看到了这个问题。我找到了解决方案并更新了我的帖子。干杯! 【参考方案1】:在我的帖子更新中也说明了,这是我用来让事情正常工作的Dockerfile
:
FROM node:8.12-alpine
RUN apk add g++ make python
EXPOSE 8080
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN npm install
CMD ["npm", "start"]
如果您的要求要求映像最小化空间,请考虑使用RUN apk add --no-cache --virtual [package-list]
(而不是api add [package-list]
)安装必要的包,然后使用RUN apk del .gyp
清除映像中的缓存。
【讨论】:
它也适用于我。秘密就在这个命令中:RUN apk add g++ make python
。谢谢
没有找到python包。我不得不改用 py3-pip
是的,python 包不再工作了。现在你应该使用RUN apk add g++ make py3-pip
缩小容器的@MGLondon 答案应该是新接受的答案,或者应该更新这个答案
@KevinDanikowski,关于您提出的顺序问题,最初的问题没有提到任何关于最小化图像尺寸的内容,因此在答案中没有这个应该是可以接受的 - 我继续并将它添加到您的建议虽然。我的答案在这里并在@MGLondon 之前被接受;我认为将该信息添加为已接受答案的编辑会更合适。【参考方案2】:
由于您在 docker 上使用 Alpine 版本,因此您可能希望尽可能少地使用空间,同时修复 node-gyp rebuild
错误。为此,建议使用以下命令,即不使用缓存并使用稍后可以删除的虚拟包。此外,您应该将apk add
和npm install
命令组合在一起;这将有助于进一步减少 docker 缓存层之间的空间。
FROM node:8.12-alpine
EXPOSE 8080
WORKDIR /app
COPY . .
RUN apk add --no-cache --virtual .gyp \
python \
make \
g++ \
&& npm install \
&& apk del .gyp
CMD ["npm", "start"]
【讨论】:
非常感谢,您帮助我将图片尺寸缩小了 72%。 用户构建镜像比删除包优化更简单 ***.com/a/69477720/6618218 我面临的问题只是添加了RUN apk add --no-cache --virtual .gyp \ python \ make \ g++ ` IT WORKED. Was it was issue to compilation to C++ at native level? Can you check error that i was facing on URL above was it due missing
g++, python thing`?顺便说一句,非常感谢
我使用的是FROM node:14.18-alpine
,只是好奇它可以在像 FROM node:14` 这样的完整图像上工作吗?是由于高山形象吗?对不起 NOOB 问题:)【参考方案3】:
对于使用 node:14-alpine
的任何人,这已为我修复:RUN apk add --no-cache python3 py3-pip make g++
【讨论】:
以上是关于Docker Node Alpine Image Build 在 node-gyp 上失败的主要内容,如果未能解决你的问题,请参考以下文章
alpine docker image 和 busybox docker image 有啥区别?
Docker:如何知道 mongo 是不是在 Alpine/node 中使用 shell 脚本文件运行
无法使用 node:alpine 在 Docker 容器中运行 React 应用程序的开发版本
sbt-native-packager:Alpine Docker Image 上的 Scala 应用程序失败,权限被拒绝
ssh 故障排除,连接到 alpine docker image ssh_exchange_identification: Connection closed by remote host