Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

Build App Node.

Olá!

A app node (adopet) está quebrando na minha máquina. Inicialmente foi pedido uma lib "source-map-loader" que instalaei ela colocando no package.json pedindo a versão latest dela. Depois ao buildar a imagem do docker novamente e rodar ele apareceu uma nova mensagem:

jecampos@pms-307005:~/universal/projects/study/alura/devops/alura-shell-script-devops/automatizando-tarefas-bash-docker/adopet$ docker run -p 8090:3000 adopet-front:1.0 



> adopet@0.1.0 start

> react-app-rewired start





There might be a problem with the project dependency tree.

It is likely not a bug in Create React App, but something you need to fix locally.



The react-scripts package provided by Create React App requires a dependency:



  "webpack": "4.42.0"



Don't try to install it manually: your package manager does it automatically.

However, a different version of webpack was detected higher up in the tree:



  /app/node_modules/webpack (version: 5.98.0) 



Manually installing incompatible versions is known to cause hard-to-debug issues.



If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.

That will permanently disable this message but you might encounter other issues.



To fix the dependency tree, try following the steps below in the exact order:



  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.

  2. Delete node_modules in your project folder.

  3. Remove "webpack" from dependencies and/or devDependencies in the package.json file in your project folder.

  4. Run npm install or yarn, depending on the package manager you use.



In most cases, this should be enough to fix the problem.

If this has not helped, there are a few other things you can try:



  5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.

     This may help because npm has known issues with package hoisting which may get resolved in future versions.



  6. Check if /app/node_modules/webpack is outside your project directory.

     For example, you might have accidentally installed something in your home folder.



  7. Try running npm ls webpack in your project folder.

     This will tell you which other package (apart from the expected react-scripts) installed webpack.



If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.

That would permanently disable this preflight check in case you want to proceed anyway.



P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!


Gostaria de sugerir o uso de outra linguagem/ambiente que seja menos volátil que o nodejs e react. Atrapalha seguir o curso com esses percalços constantes.

3 respostas

Olá, Jefferson!

A mensagem de erro que você está recebendo indica um problema de compatibilidade com a versão do Webpack que está sendo usada. Vou te guiar por algumas etapas que podem ajudar a resolver esse problema:

  1. Remover arquivos de bloqueio e dependências:

    • Exclua o arquivo package-lock.json ou yarn.lock (dependendo de qual gerenciador de pacotes você está usando).
    • Exclua a pasta node_modules.
  2. Ajustar o package.json:

    • Remova qualquer menção ao webpack nas seções dependencies ou devDependencies.
  3. Reinstalar as dependências:

    • Execute npm install ou yarn para reinstalar todas as dependências. Isso deve garantir que a versão correta do Webpack seja instalada.
  4. Verificar a instalação do Webpack:

    • Use npm ls webpack para verificar se há alguma instalação do Webpack fora do esperado. Isso pode ajudar a identificar se há alguma dependência que está causando conflito.
  5. Considerar o uso do SKIP_PREFLIGHT_CHECK:

    • Se os passos acima não resolverem, você pode criar um arquivo .env na raiz do seu projeto e adicionar a linha SKIP_PREFLIGHT_CHECK=true. Isso vai ignorar o erro, mas tenha em mente que pode haver outros problemas.

Se você está considerando usar outra linguagem ou ambiente, é uma escolha válida, mas lembre-se que cada tecnologia tem seus próprios desafios. Node.js e React são amplamente utilizados e têm uma comunidade grande que pode ser um grande recurso para resolver problemas.

Bons estudos!

Nenhuma das opções acima funcionou. Localmente eu consegui rodar o app com npm audit fix --force e depois npm run start mas no docker esse comando falha com a seguinte mensagem:


 => [internal] load build definition from Dockerfile                                                                                                                         0.2s

... OMITIDO POR FALTA DE CARACTER NO FORUM ...

913.0 # npm audit report

913.0 

913.0 nth-check  <2.0.1

913.0 Severity: high

913.0 Inefficient Regular Expression Complexity in nth-check - https://github.com/advisories/GHSA-rp65-9cf3-cjxr

913.0 fix available via `npm audit fix --force`

913.0 Will install react-scripts@3.0.1, which is a breaking change

913.0 node_modules/svgo/node_modules/nth-check

913.0   css-select  <=3.1.0

913.0   Depends on vulnerable versions of nth-check

913.0   node_modules/svgo/node_modules/css-select

913.0     svgo  1.0.0 - 1.3.2

913.0     Depends on vulnerable versions of css-select

913.0     node_modules/svgo

913.0       @svgr/plugin-svgo  <=5.5.0

913.0       Depends on vulnerable versions of svgo

913.0       node_modules/@svgr/plugin-svgo

913.0         @svgr/webpack  4.0.0 - 5.5.0

913.0         Depends on vulnerable versions of @svgr/plugin-svgo

913.0         node_modules/@svgr/webpack

913.0           react-scripts  >=2.1.4

913.0           Depends on vulnerable versions of @svgr/webpack

913.0           Depends on vulnerable versions of resolve-url-loader

913.0           node_modules/react-scripts

913.0 

913.0 postcss  <8.4.31

913.0 Severity: moderate

913.0 PostCSS line return parsing error - https://github.com/advisories/GHSA-7fh5-64p2-3v2j

913.0 fix available via `npm audit fix --force`

913.0 Will install react-scripts@3.0.1, which is a breaking change

913.0 node_modules/resolve-url-loader/node_modules/postcss

913.0   resolve-url-loader  0.0.1-experiment-postcss || 3.0.0-alpha.1 - 4.0.0

913.0   Depends on vulnerable versions of postcss

913.0   node_modules/resolve-url-loader

913.0 

913.0 8 vulnerabilities (2 moderate, 6 high)

913.0 

913.0 To address all issues (including breaking changes), run:

913.0   npm audit fix --force

------



 1 warning found (use docker --debug to expand):

 - JSONArgsRecommended: JSON arguments recommended for ENTRYPOINT to prevent unintended behavior related to OS signals (line 7)

Dockerfile:5

--------------------

   3 |     COPY package* .

   4 |     RUN npm install

   5 | >>> RUN npm audit fix --force

   6 |     COPY . .

   7 |     ENTRYPOINT npm start

--------------------

ERROR: failed to solve: process "/bin/sh -c npm audit fix --force" did not complete successfully: exit code: 1

3293  dockerd
github.com/moby/buildkit/executor/runcexecutor.exitError

    /root/build-deb/engine/vendor/github.com/moby/buildkit/executor/runcexecutor/executor.go:390

github.com/moby/buildkit/executor/runcexecutor.(*runcExecutor).Run

    /root/build-deb/engine/vendor/github.com/moby/buildkit/executor/runcexecutor/executor.go:338

github.com/moby/buildkit/solver/llbsolver/ops.(*ExecOp).Exec

    /root/build-deb/engine/vendor/github.com/moby/buildkit/solver/llbsolver/ops/exec.go:472

github.com/moby/buildkit/solver.(*sharedOp).Exec.func2

    /root/build-deb/engine/vendor/github.com/moby/buildkit/solver/jobs.go:1100

github.com/moby/buildkit/util/flightcontrol.(*call[...]).run

    /root/build-deb/engine/vendor/github.com/moby/buildkit/util/flightcontrol/flightcontrol.go:122

sync.(*Once).doSlow

    /usr/local/go/src/sync/once.go:74

sync.(*Once).Do

    /usr/local/go/src/sync/once.go:65

runtime.goexit

    /usr/local/go/src/runtime/asm_amd64.s:1695



23389 v0.20.0 /usr/libexec/docker/cli-plugins/docker-buildx buildx build -D -t adopet-front:1.0 .

google.golang.org/grpc.(*ClientConn).Invoke

    google.golang.org/grpc@v1.68.1/call.go:35

github.com/moby/buildkit/api/services/control.(*controlClient).Solve

    github.com/moby/buildkit@v0.19.0/api/services/control/control_grpc.pb.go:88

github.com/moby/buildkit/client.(*Client).solve.func2

    github.com/moby/buildkit@v0.19.0/client/solve.go:269

golang.org/x/sync/errgroup.(*Group).Go.func1

    golang.org/x/sync@v0.10.0/errgroup/errgroup.go:78

runtime.goexit

    runtime/asm_amd64.s:1695



3293  dockerd

github.com/moby/buildkit/solver.(*edge).execOp

    /root/build-deb/engine/vendor/github.com/moby/buildkit/solver/edge.go:966

github.com/moby/buildkit/solver/internal/pipe.NewWithFunction[...].func2

    /root/build-deb/engine/vendor/github.com/moby/buildkit/solver/internal/pipe/pipe.go:78

runtime.goexit

    /usr/local/go/src/runtime/asm_amd64.s:1695

... OMITIDO FALTA DE ESPAÇO NO FORUM ...```
solução!

Apenas complementando:

A saída que encontrei foi rodar 2x o docker build para conseguir gerar a imagem. Como mencionei anteriormente, npm audit fix --force soluciona o problema pra rodar localmente. Então na 2nd vez que rodei o docker eu o fiz com a seguinte modificação:

WORKDIR /app
#COPY package* .
#RUN npm install
#RUN npm audit fix --force
COPY . .
ENTRYPOINT npm start```

Ao comentar o trecho do COPY até o anterior ao outro COPY fez com q o docker já usasse esses layers construídos da primeira vez e, assim, consegui completar a imagem.

Não é o melhor caminho mas foi o possível considerando o estado do ambiente.

Reforço que a minha sugestão não é contra o nodejs/react per ser mas sim, no meu entendimento, é necessário um ambiente mais simples e que não cause tantos problemas na hora de seguir com o tutorial. Talvez um app frontend somente com vanilla html/js/css seria o ideal para esse estudo.