Booting builder: context deadline exceeded

I installed docker desktop on macOS, i have:

Docker version 28.0.1, build 068a01e

I’m using sst monorepo to build an app, i create a task that is run in a container,
but when i try to deploy it i got this error:

there’s nothing fancy in my dockerfile:

FROM node:lts-slim
WORKDIR /app
# Copy the whole monorepo
COPY . .
# Install dependencies
RUN npm install
CMD ["node", "--import=tsx", "./packages/trials-batch/src/index.ts"]

i tried to install daemon image but still facing same problem,
can someone tell me how to fix this issue?

If it is a monorepo, does it mean you copy a lot of files into the image?

What do you mean by daemon image? Running Docker in a Docker container in Docker Desktop?