gpt4 book ai didi

node.js - Docker 镜像无法在 AWS EC2 linux 上构建,但在 Windows 和 Mac 上构建时可以正常工作

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

当我在 Mac 或 Windows 上使用以下 3 个文件运行 docker-compose build minexample 时,图像构建成功。但是当我尝试在 AWS Linux 2 EC2 实例上做同样的事情时,它在运行 node-sass 的安装脚本时失败了(见下文)。

经过 2 天的反复试验,我意识到如果我将 react-scripts 版本降低到“3.0.0”,问题就会消失。这也意味着我需要将开发依赖项中的 eslint 从 7.12.0 降低到 5.16.0。

我有几个问题:

  1. docker 构建如何在 Mac/Windows 上成功,但在 Linux 上失败?我认为容器应该是一个孤立的环境,但主机操作系统不知何故影响了这里的结果。
  2. 如何确定哪些 Node 包版本存在冲突?经过反复试验,我花了很多时间才发现降低 react-script 的版本可以解决(或隐藏)问题。

package.json

{
"name": "minexample",
"version": "1.0.0",
"dependencies": {
"node-sass": "4.12.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"react-scripts": "4.0.2"
},
"devDependencies": {
},
"scripts": {
"start": "react-scripts start"
}
}

Docker文件

FROM node:10.16.0-alpine AS build

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ENV PATH /usr/src/app/node_modules/.bin:$PATH

# cache dependencies
COPY ./package.json /usr/src/app/package.json
RUN npm install

docker-compose.yml

version: '3.7'

services:
minexample:
build:
context: ./
dockerfile: Dockerfile
container_name: minexample

错误

> node-sass@4.12.0 install /usr/src/app/node_modules/node-sass 
> node scripts/install.js

The command '/bin/sh -c npm install' returned a non-zero code: 1
ERROR: Service 'minexample' failed to build

最佳答案

基于评论。

我尝试重现该问题,但在我的测试中,docker 镜像成功构建

使用的实例,t2.small(尚未使用t2.micro 进行测试)。

亚马逊 Linux 2:

NAME="Amazon Linux"
VERSION="2"
ID="amzn"
ID_LIKE="centos rhel fedora"
VERSION_ID="2"
PRETTY_NAME="Amazon Linux 2"
ANSI_COLOR="0;33"
CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2"
HOME_URL="https://amazonlinux.com/"

docker

docker --version
Docker version 19.03.13-ce, build 4484c46

docker-compose

docker-compose --version
docker-compose version 1.28.4, build cabd5cfb

构建图像

docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
a_minexample latest 82968af21096 24 minutes ago 426MB
node 10.16.0-alpine 9dfa73010b19 20 months ago 75.3MB

关于node.js - Docker 镜像无法在 AWS EC2 linux 上构建,但在 Windows 和 Mac 上构建时可以正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66299019/

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