strapi / strapi-docker

Install and run your first Strapi project using Docker

Home Page:https://strapi.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

satschelPradeep opened this issue · comments

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

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

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.

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..