FROM node:23 WORKDIR /app RUN npm i -g tsx COPY package.json yarn.lock .yarnrc.yml . RUN corepack yarn install COPY . . ENTRYPOINT ["/app/cli"]