noot
Some checks failed
commit-tag / commit-tag-image (push) Failing after 4m24s

This commit is contained in:
a 2025-02-26 23:38:10 -06:00
parent b24da73981
commit 6d4f2390ae
No known key found for this signature in database
GPG Key ID: 2F22877AA4DFDADB

View File

@ -1,13 +1,17 @@
FROM node:23 AS builder
WORKDIR /build
COPY package.json yarn.lock .yarnrc.yml .
RUN corepack yarn install
FROM node:23 FROM node:23
WORKDIR /app WORKDIR /app
RUN npm i -g tsx RUN npm i -g tsx
COPY package.json yarn.lock .yarnrc.yml . COPY --from=builder /build/node_modules node_modules
COPY tsconfig.json package.json cli .
RUN corepack yarn install COPY src src
COPY . .
ENTRYPOINT ["/app/cli"] ENTRYPOINT ["/app/cli"]