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?