FROM node:18-alpine WORKDIR /app COPY package.json /app/ RUN npm install COPY . . RUN npm run build EXPOSE 80 CMD npx vite preview --port 80