FROM node:22-alpine WORKDIR /app # Install better-sqlite3 build dependencies RUN apk add --no-cache python3 make g++ # Copy package files COPY package*.json ./ # Install dependencies RUN npm install # Copy source COPY . . # Expose dev server port EXPOSE 5173 # Run dev server bound to all interfaces CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]