FROM node:latest WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm install # Copy source code COPY . . # Expose the port that Vite dev server runs on EXPOSE 5173 # Run the development server CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]