strapi / strapi-docker

Install and run your first Strapi project using Docker
https://strapi.io
MIT License
1.17k stars 445 forks source link

buildx failed with: ERROR: failed to solve: process "/bin/sh -c npm run build" did not complete successfully: exit code: 1 #339

Open satschelPradeep opened 1 year ago

satschelPradeep commented 1 year ago

buildx failed with: ERROR: failed to solve: process "/bin/sh -c npm run build" did not complete successfully: exit code: 1

gustawdaniel commented 1 year ago

I have the same on

FROM node:16-alpine as builder

with

RUN npx tsc

For me solution was

RUN NODE_ENV=development npm i

instead of

RUN npm i

and reason is: your dev packages are not installed if you have NODE_ENV=production.

source

https://stackoverflow.com/questions/67199539/tsc-not-found-in-docker-build

restless226 commented 1 year ago

Manually put "nom i: in the terminal and run. Comment "RUN npm install" line and try again running the same command. It worked in my case.

techy4shri commented 6 months ago

I got this issue too, but how do you run the nom i in terminal? and RUN doesn't work when put manually fro some reason..

alirezamajdi commented 3 months ago

Since app user don’t have permissions on app folder and files that were created by root user, you need to give it after created user and before switch to app user

Here the command : RUN chown -R app /app , where here you are changing the owner of the folder and the files that in the future are created.

ramanjichalla commented 1 week ago

ERROR: failed to solve: process "/bin/sh -c npm run build" did not complete successfully: exit code: 1 i had this issue why and someone explain me plz