FROM node:23-alpine WORKDIR /app COPY . . RUN npm install RUN npm install typescript -D RUN npx tsc CMD ["node", "dist"]