FROM node:24-alpine WORKDIR /app RUN npm install -g npm RUN npm create vite@latest . -- --template vanilla COPY package.json . RUN npm install COPY vite.config.js . COPY postcss.config.js . COPY tailwind.config.js . EXPOSE 5173 CMD ["npx", "vite", "build"]