Ditzzy/api
0
1FROM node:22-alpine2 3WORKDIR /app4 5COPY package.json ./6COPY tsconfig.json ./7COPY vite.config.ts ./8COPY tailwind.config.ts ./9COPY postcss.config.js ./10 11RUN npm install12 13COPY src ./src14COPY _build/ ./_build15COPY components.json ./16 17RUN npx tsx _build/script.ts18 19EXPOSE 786020ENV PORT=786021ENV NODE_ENV=production22 23CMD ["node", "dist/index.cjs"]