# Development Dockerfile FROM node:18-alpine # Set working directory WORKDIR /app # Install dependencies COPY package*.json ./ RUN npm install # Copy source code COPY . . # Expose the development port (Vite default) EXPOSE 5173 # Start the development server CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]