David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
156 Bytes
FROM node:20-alpine
WORKDIR /app
COPY package.json .
COPY package-lock.json* ./ || true
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev"]