FROM oven/bun:alpine ENV TERM=xterm-256color ENV COLORTERM=truecolor RUN apk add --no-cache nodejs npm WORKDIR /app COPY . . RUN bun i RUN bunx convex codegen RUN npm run build ENTRYPOINT ["bun"]