FROM node:22-slim WORKDIR /app COPY package.json ./ RUN npm install --omit=dev COPY src/ src/ EXPOSE 9222 CMD ["node", "src/http-server.js"]