10 lines
302 B
Docker
10 lines
302 B
Docker
FROM node:22-alpine
|
|
WORKDIR /app
|
|
COPY dist/ dist/
|
|
COPY node_modules/@modelcontextprotocol/ node_modules/@modelcontextprotocol/
|
|
COPY node_modules/zod/ node_modules/zod/
|
|
COPY node_modules/@hono/ node_modules/@hono/
|
|
ENV PORT=3001 HOST=0.0.0.0 NODE_ENV=production
|
|
EXPOSE 3001
|
|
CMD ["node", "dist/http.mjs"]
|